
body {
	background-color: #ECEC1A;
}
ul {
	list-style-type: none;
	background-color: #7A9E9F;
	padding: 0px;
	margin: 0px;
	overflow: hidden
}

a {
	text-decoration: none;
	padding: 15px;
	display: block;
	text-align: center;
	color: white
}

a:hover{
	background-color: black;
}

li{
	float: left;
}

p {
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;
}
 row {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  grid-template-areas:
    "image1 image1 image1 image1"
    "text text text text";
}

image1 {
  object-fit: image1;
  width: 50%;
  height: auto;
  display: block;
  
}
image2 {
  object-fit: image1;
  width: 50%;
  height: auto;
  
}
image3 {
  object-fit: image1;
  width: 50%;
  height: auto;
  display: block;
}
image4 {
  object-fit: image1;
  width: 50%;
  height: auto;
  display: block;
}
img {
  margin: 5px;
  max-height: 100%;
  max-width: 100%;
}
.image-container{
	height: 500px;
	width: 800px;
}
.image-container img{
	width:100;
	height:100;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 10px;
}
.service-container img {
	margin: 5px;
  max-height: 50%;
  max-width: 50%;
}
.service {
    position: relative; 
    width: 400px; 
    height: 500px; 
    overflow: hidden; 
}

.service img {
    width: 100%; 
    height: 100%;
    transition: transform 0.5s ease; 
    object-fit: cover; 
}

.service h2 {
    position: absolute; 
    top: 50%; 
    left: 25%; 
    transform: translate(-50%, -50%); 
    width: 50%; 
    margin: 0; 
    padding: 0; 
    color: white; 
    text-align: center; 
    opacity: 0; 
    transition: opacity 0.5s ease; 
    background-color: rgba(0, 0, 0, 0.5); 
}

.service:hover h2 {
    opacity: 1; 
}

.service:hover img {
    transform: scale(1.1); 
}
.review-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.review {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.review-image {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    margin-right: 20px;
}

.review-text {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #333;
}

.video-container {
    width: auto; 
    height: 200px; 
    overflow: hidden; 
    position: relative;
}

.cloud-video {
    width: 100%;
    height: auto; 
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
}
/* Media query for smaller screens */
@media screen and (max-width: 600px) {
    ul {
        display: flex;
        flex-direction: column;
    }
    li {
        float: none;
    }
    a {
        text-align: center;
    }
}

