.maincontent {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;

}

.portfolio-wrapper,
.gallery-wrapper {
  max-width: 92%;
  width: 100%;
  margin-inline: auto;
  padding-block: 40px;
  }
  
  .box-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    width: 100%;
    position: relative;
justify-content: center;
  }

  .box-gallery h3 {
    position: absolute;
    top: -55px;
  }
  .box-gallery .box-gallery-item{
    position: relative;
    height: 250px;
    margin-inline: auto;
    overflow: hidden;
    flex: 0 1 18em;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
  }


  .box-gallery .box-gallery-item i {
    position: absolute;
    bottom: 40%;
    left: 50%;
    margin: 0 0 -28px -28px;
    font-size: 2em !important;
    border-radius: 50%;
    padding: 10px;
    background: var(--accent-color);
    color: #fff;
    opacity: 0;
    transition: all 0.25s;
  }
  .box-gallery .box-gallery-item:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }
  .box-gallery .box-gallery-item:hover i {
    bottom: 50%;
    opacity: 1;
  }
  .box-gallery .box-gallery-item:hover figure {
    opacity: 0.6;
  }
  .box-gallery .box-gallery-item figure {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    background-size: cover;
  }
  .box-gallery .box-gallery-item figure:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }

.box-gallery .box-gallery-item figure {
	clip-path: unset;
}

.box-gallery .box-gallery-item::before {
display:none;
}





.services-offered-wrapper {
position: relative;
	padding: 30px 3%;
	background-image: url(/imageserver/UserMedia/thunder/2025/white-abstract003.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

}

.services-container {
	max-width: 1600px;
	width: 100%;
	border-radius: 10px;
	padding: 20px;
	margin: 40px auto;
}

/* Service Options */
.service-options {
    display: grid;
grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    margin-bottom: 20px;
gap: 15px;
}

.service-option {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
max-width: 300px;
margin: auto;
}

.service-option:hover,
.service-option.active {
	background-color: #000;
opacity: 1;
}

/* Service Content */
.service-content {
	border: 2px solid #eaeaea;
	padding-top: 20px;
	border-radius: 8px;
	background: #fff;
}

.service-details {
    display: none;
    font-size: 16px;
    color: #333;
}

.service-details.active {
    display: block;
}
.service-offered-text {
	text-align: start;
}

.home-intro-list {
text-align: start;
}

.home-intro-list-item {
	margin-block: 20px;
}

.service-offered-list-title {
	font-weight: 600;
	text-align: start;
	margin: 30px auto 20px;
}
.service-offered-image {
	text-align: center;
}


@media (max-width: 900px) {
.service-options {
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 20px;
}

.service-option {
	font-size: 14px;
}
}

@media (max-width: 500px) {
.service-option {
	font-size: 12px;
}
}

@media (max-width: 400px) {
.service-options {
	grid-template-columns: repeat(1, 1fr);
}

.services-container {
	margin: 10px auto;
}
}