.custom_css{
		/* Scoped CSS variables (replacing :root from custom.css) */
		--primary-color				: #1C4942;
		--secondary-color			: #F7F0F2;
		--text-color				: #7B798C;
		--accent-color				: #1C4942;
		--accent-secondary-color	: #FEF7F8;
		--white-color				: #FFFFFF;
		--divider-color				: #7B798C24;
		--dark-divider-color		: #FFFFFF24;

		position: relative;
		font-family: "DM Sans", serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 1em;
		color: #7B798C;
	/*	background: #FEF7F8; */
	}
	.custom_css p{
		line-height: 1.6em;
		margin-bottom: 1.5em;
	}
	.custom_css h1,
	.custom_css h2,
	.custom_css h3,
	.custom_css h4,
	.custom_css h5,
	.custom_css h6{
		margin: 0;
		font-family: "Marcellus", serif;
		font-weight: 400;
		line-height: 1.1em;
		color: #1C4942;
	}
	.custom_css figure{
		margin: 0;
	}
	.custom_css img{
		max-width: 100%;
	}
	.custom_css a{
		text-decoration: none;
		color: inherit;
	}
	.custom_css a:hover,
	.custom_css a:focus{
		text-decoration: none;
		outline: 0;
	}
	.custom_css span{
		font-family: inherit;
		color: inherit;
	}

	.custom_css .image-anime{
		position: relative;
		overflow: hidden;
	}
	.custom_css .image-anime:after{
		content: "";
		position: absolute;
		width: 200%;
		height: 0%;
		left: 50%;
		top: 50%;
		background-color: rgba(255,255,255,.3);
		transform: translate(-50%,-50%) rotate(-45deg);
		z-index: 1;
	}
	.custom_css .image-anime:hover:after{
		height: 250%;
		transition: all 600ms linear;
		background-color: transparent;
	}
    .custom_css .services-slider .swiper-pagination-bullets.swiper-pagination-horizontal{
      justify-content:center;
    }
	.custom_css .service-box{
		position: relative;
	}
    .custom_css .service-image::before{
      content:none !important;
    }
	.custom_css .service-image a{
		display: block;
		border-radius: 30px;
		overflow: hidden;
	}
	.custom_css .service-image figure{
		display: block;
	}
	.custom_css .service-image figure::before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.13%, #56575C 81.58%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}
	.custom_css .service-image img{
		width: 100%;
		aspect-ratio: 1 / 1.042;
		object-fit: cover;
		border-radius: 30px;
		transition: all 0.4s ease-in-out;
	}
	.custom_css .service-box:hover .service-image img{
		transform: scale(1.05);
	}
	.custom_css .service-item{
		position: absolute;
		bottom: 40px;
		left: 40px;
		right: 40px;
		z-index: 1;
	}
	.custom_css .service-item .icon-box{
		position: relative;
		background: #F7F0F2; /* from --secondary-color */
		border-radius: 10px;
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
	}
	.custom_css .service-item .icon-box::before{
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background: #56575C; /* from --primary-color */
		border-radius: 10px;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transition: all 0.4s ease-in-out;
		z-index: 0;
	}
	.custom_css .service-item:hover .icon-box::before{
		transform: scale(1);
	}
	.custom_css .service-item .icon-box img{
		position: relative;
		max-width: 30px;
		z-index: 1;
		transition: all 0.3s ease-in-out;
	}
	.custom_css .service-item:hover .icon-box img{
		filter: brightness(0) invert(1);
	}
	.custom_css .service-content h3{
		font-size: 22px;
		text-transform: capitalize;
		color: #FFFFFF; /* from --white-color */
		margin-bottom: 10px;
	}
	.custom_css .service-content h3 a{
		color: inherit;
	}
	.custom_css .service-content p{
		color: #FFFFFF; /* from --white-color */
		margin: 0;
	}
	.custom_css .services-pagination{
		position: relative;
		text-align: center;
		margin-top: 60px;
	}
	.custom_css .services-pagination .swiper-pagination-bullet{
		height: 15px;
		width: 15px;
		display: inline-block;
		border-radius: 50%;
		background: #7B798C; /* from --text-color */
		opacity: 1;
		margin: 0 3px;
		transition: all 0.4s ease-in-out;
	}
	.custom_css .services-pagination .swiper-pagination-bullet-active{
		width: 30px;
		background: #1C4942; /* from --primary-color */
		border-radius: 10px;
	}
     /* Team cards (scoped to .custom_css) */
    .custom_css .team-item{
        position: relative;
        height: calc(100% - 30px);
        margin-bottom: 30px;
        overflow: hidden;
    }
    .custom_css .team-image a{
        display: block;
        border-radius: 24px;
        overflow: hidden;
    }
    .custom_css .team-image figure:before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(180deg, rgba(28, 73, 66, 0) 43.17%, #56575C 100%);
        z-index: 1;
    }
    .custom_css .team-image img{
        width: 100%;
        aspect-ratio: 1 / 1.435;
        object-fit: cover;
        transition: all 0.4s ease-in-out;
    }
    .custom_css .team-item:hover .team-image img{
        transform: scale(1.1);
    }
    .custom_css .team-body{
        position: absolute;
        right: 40px;
        bottom: 40px;
        left: 40px;
        transform: translateY(40px);
        text-align: center;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }
    .custom_css .team-item:hover .team-body{
        transform: translateY(0);
    }
    .custom_css .team-content h3{
        font-size: 21px!important;
        text-transform: capitalize;
        color: #FFFFFF; /* var(--white-color) */
        margin-bottom: 5px;
    }
    .custom_css .team-content h3 a{
        color: inherit;
    }
    .custom_css .team-content p{
        color: #FFFFFF; /* var(--white-color) */
        text-transform: capitalize;
        margin: 0;
    }
    .custom_css .team-social-list{
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    .custom_css .team-item:hover .team-social-list{
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
    }
    .custom_css .team-social-list ul{
        display: flex;
        justify-content: center;
        gap: 15px 20px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .custom_css .team-social-list ul li a{
        width: 40px;
        height: 40px;
        color: #F7F0F2; /* var(--secondary-color) */
        background: transparent;
        border-radius: 50%;
        border: 1px solid #F7F0F2; /* var(--secondary-color) */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease-in-out;
    }
    .custom_css .team-social-list ul li:hover a{
        color: #1C4942; /* var(--primary-color) */
        background: #F7F0F2; /* var(--secondary-color) */
    }
    .custom_css .team-social-list ul li a i{
        font-size: 18px;
        color: inherit;
    }

    /* Team layout: 4 per row desktop, responsive */
    .custom_css.team-row{
        display: flex;
        flex-wrap: wrap;
      /*  gap: 30px; */
        justify-content: center;
    }
    .custom_css .team-col{
        flex: 0 0 calc(25% - 30px);
        max-width: calc(25% - 30px);
    }
    .single_custom_css .transformation_image{
        margin-bottom: 30px;
        position: relative;
    }
    .single_custom_css .transformation_image img{
        width: 100%;
        aspect-ratio: 1 / 0.7;
        object-fit: cover;
        border-radius: 30px;
        overflow: hidden;
        display: block;
    }
    @media (max-width: 991px){
        .custom_css .team-col{
            flex: 0 0 calc(50% - 30px);
            max-width: calc(50% - 30px);
        }
    }
    @media (max-width: 575px){
        .custom_css .team-col{
            flex: 0 0 100%;
            max-width: 100%;
        }
    }