html {
    scroll-behavior: smooth;
}

.our-services{
	padding: 80px 0;
}

.service-box{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid var(--divider-color);
	background-color: var(--secondary-color);
	background-image: url('../images/service-box-bg-img-1.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: top left;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-box-content{
	margin: 40px;
}

.service-box-content h3{
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 15px;
}

.service-box-content h3 a{
	color: inherit;
}

.service-box-content p{
	margin-bottom: 20px;
}

.service-box-content ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.service-box-content ul li{
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.service-box-content ul li:last-child{
	margin-bottom: 0;
}

.service-box-content ul li::marker{
    color: var(--accent-color);
}

.service-box-image{
	border-radius: 10px;
	margin: 0 20px 20px;
	overflow: hidden;
}

.service-box-image figure{
	display: block;
}

.service-box-image img{
	width: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
}

.service-box-list .service-box{
	background-image: url('../images/service-box-bg-img-2.png');
	background-position: center center;
	background-size: cover;
}

.service-box-list .service-box-content{
	margin: 40px 60px 40px 40px;
}

.service-box .icon-box{
	position: absolute;
	bottom: -10px;
	right: -10px;
}

.service-box .icon-box img{
	width: 100%;
	max-width: 80px;
}

.service-cta-box {
    position: relative;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    align-content: end;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
    background: none;
}

.service-cta-box .cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    opacity: 0.2;
    z-index: 2;
}

.cta-video {
    animation: zoomVideo 3s ease-in-out infinite alternate;
}

@keyframes zoomVideo {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.service-cta-box > :not(.cta-video) {
    position: relative;
    z-index: 3;
}


.service-cta-box .icon-box,
.service-cta-content,
.service-cta-btn{
	position: relative;
	z-index: 1;
}

.service-cta-box .icon-box{
	margin-bottom: 30px;
}

.service-cta-box .icon-box img{
	width: 100%;
	max-width: 50px;
}

.service-cta-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.service-cta-content p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.service-cta-btn{
	margin-top: 20px;
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.how-work-video-content .section-footer-text{
    margin: 30px 30px 0 30px;
}

.section-footer-text p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text span{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 5px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p a{
	position: relative;
	font-weight: 700;
	display: inline-block;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.section-footer-text a::before{
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	height: 1px;
	width: 100%;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p:hover span,
.section-footer-text a:hover,
.section-footer-text a:hover::before{
	background-position: right center;
}