<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

 header{
      width:100%;
      position:fixed;
      top:0;
      z-index:999;
      background:rgba(255,255,255,0.95);
      backdrop-filter:blur(10px);
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
    }


/* SECTION */

.testimonials{
    width:100%;
    padding:90px 20px;
    background:
    linear-gradient(
        180deg,
        #faf8fc 0%,
        #f4eff9 100%
    );
}

.container{
    max-width:1200px;
    margin:auto;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#724da1;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    margin-top:12px;
    font-size:42px;
    color:#2c2438;
    font-weight:700;
}

.section-title p{
    margin-top:15px;
    color:#7d7488;
    font-size:16px;
}

/* SLIDER */

.slider-wrapper{
    position:relative;
    overflow:hidden;
}

.slider-track{
    display:flex;
    transition:0.5s ease;
}

.testimonial-card{
    min-width:100%;
    padding:10px;
}

/* CARD */

.card-content{
    background:white;
    border-radius:30px;
    padding:50px;
    display:flex;
    align-items:center;
    gap:40px;
    box-shadow:
    0 15px 40px rgba(114,77,161,0.08);

    position:relative;
}




/* VIDEO */

.video-section {
	background: url(images/video-bg.jpg) no-repeat fixed center;
	background-size: cover;
	overflow: hidden;
}
.video-overlay {
	background: linear-gradient(to left, rgba(122, 96, 255, 0.90), rgba(205, 159, 250, 0.90));
}
.video-section h3 {
	font-weight: 600;
	font-size: 38px;
}
.video-section i {
	display: block;
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 100px;
	background: #ffffff;
	color: #8e1efc;
	font-size: 30px;
	line-height: 70px;
	margin: 0 auto;
	cursor:pointer;
}
.video-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	align-content: center !important;
	-ms-flex-line-pack: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}
.video-popup .video-src {
	position: relative;
	width: 700px;
	max-width: 80%;
}
.video-popup .iframe-src {
	width: 100%;
	height: 0;
	padding-top: 56.3%;
	position: relative;
	display: none;
}
.video-popup .iframe-src iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}








/* DECORATION */

.card-content::before{
    content:"“";
    position:absolute;
    top:20px;
    right:35px;
    font-size:120px;
    color:#724da112;
    font-family:serif;
    line-height:1;
}

/* CLIENT */

.client{
    min-width:220px;
    text-align:center;
}

.client img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #724da1;
    box-shadow:
    0 10px 25px rgba(114,77,161,0.25);
}

.client h3{
    margin-top:18px;
    color:#2f2540;
    font-size:22px;
    font-weight:600;
}

.client span{
    color:#724da1;
    font-size:15px;
    font-weight:500;
}

/* TEXT */

.testimonial-text{
    flex:1;
}

.testimonial-text p{
    font-size:20px;
    line-height:1.9;
    color:#554d60;
    font-weight:300;
}

/* BUTTONS */

.slider-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:40px;
}

.slider-buttons button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#724da1;
    color:white;
    font-size:22px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:
    0 10px 20px rgba(114,77,161,0.25);
}

.slider-buttons button:hover{
    transform:translateY(-3px);
    background:#5f3f89;
}

/* DOTS */

.dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d5c9e5;
    cursor:pointer;
    transition:0.3s;
}

.dot.active{
    width:32px;
    border-radius:20px;
    background:#724da1;
}

/* MOBILE */

@media(max-width:900px){

    .card-content{
        flex-direction:column;
        text-align:center;
        padding:40px 30px;
    }

    .testimonial-text p{
        font-size:18px;
    }

    .section-title h2{
        font-size:34px;
    }

}

@media(max-width:500px){

    .section-title h2{
        font-size:28px;
    }

    .testimonial-text p{
        font-size:16px;
        line-height:1.7;
    }

    .client img{
        width:110px;
        height:110px;
    }

}

</style>