#about .cv-grid {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px; */

    display: grid; /* Keep grid layout */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Ensures items fill the space */
    grid-auto-rows: 300px; /* Define the row height */
    row-gap: 30px;
    width: 100%; /* Full width */
    justify-items: center;
  }
  
 #about .cv-container {
    position: relative;
    width: 300px;
    height:300px; 
    border-radius: 1.1rem;
  }
  
#about .image-cv {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 1.1rem;
  }
  
 #about .overlay-cv {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0%;
    transition: .5s ease;
    background-color: #000000;
    border-radius: 1.1rem;
  }
  
 #about .cv-container:hover .overlay-cv {
    opacity: 80%;
    width:100%;
    height:100%;
  }
  
  /* first grid item - zarqa has massive cv */
 #about .text-cv{
    color: rgb(255, 255, 255);
    width: 100%;
    height:100%;
    /* introudced viewport height % of pixels - nice relative size */
    font-size: 1vh;
    position: absolute;
    /* aligns the text in the middle */
    text-align: center;
    padding:2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .service-container{
    display: grid;
    width:100%;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px; /* Space between boxes */

  }

  .service-box {
    border: 1px solid #ccc; /* Border around each box */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}


/* for qualification images */
#qual-container{
  display:flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;

}

.qual-img {
  width: 300px; /* Width of the image container */
  height: 200px; /* Height of the image container */
  overflow: hidden; /* Hide overflow to maintain aspect ratio */

}

.qual-img img {
  width: 100%; /* Make the image fill the container */
  height: 70%; /* Make the image fill the container */
  object-fit:fill;
  border-radius: 40px 10px 40px 10px; 
 
}

	/* This is for home page business hours */
  .grid-business-hour-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    width: 40%;
    margin-top: 50px;
    }

    .grid-item {
  
    border-top:1px solid#ffffff;
    border-bottom: 1px solid #ffffff; /* Add bottom border to the last row */
    text-align: center;
    }
    
/* review css to make it a row */
.review-carousel {
  position: relative;
  width: 40%; /* Adjust width as needed */
  margin: auto;
  overflow: hidden;
  background-color: #000000;
  opacity: 30%;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  justify-content: center;
}

.review-slide {
  display: none; /* Hide all slides by default */
}

.review-slide p{
  font-size: larger;
}

.review-slide.active {
  display: block; /* Show the active slide */
}


#btn-container.review-btn {
border: none;
}
.review-btn{
  margin: 50px;
}


