
 .faq-section{
    width:100%;
    padding:80px 5%;
    background-image: url(/background-img/team-bg-11.jpg);
}

.faq-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:100px;
    flex-wrap:wrap;
}

/* LEFT SIDE */
.faq-left{
    flex:1 1 500px;
}
.faq-left h2{
   font-size: var(--sub-heading-font-size);
   color: var(--sub-heading-color);
   margin: 25px 0px;
}
.faq-left p{
   font-size: var(--para-font-size);
   margin-bottom: 20px;
}

.left button.explore{
    padding:12px 30px;
    background:white;
    border:1px solid #cfd8dc;
    border-radius:30px;
    cursor:pointer;
    margin-bottom:25px;
}

.left h1{
    font-size:38px;
    margin-bottom:50px;
    color:#002b37;
}

.left p{
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

.faq-item{
    background:#003a2e;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius:10px;
    color:white;
    margin-bottom:15px;
    overflow:hidden;
    transition:0.3s ease;
}

.faq-btn{
    padding:20px 25px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
}

.faq-btn .icon{
    font-size:20px;
    transition:transform .3s ease;
}

.faq-content{
    background:var(--light-color);
    padding:0 25px;
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-content p{
    padding:15px 0;
    color:var(--bg-color);
}

/* RIGHT SIDE VIDEO */
.faq-right{
    flex:1 1 500px;
    position:relative;
}

.video-box{
    width:100%;
    height: 500px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    position:relative;
}

.video-box img.main{
    width:100%;
    display:block;
}

/* Play Button */
.play-btn{
    width:90px;
    height:90px;
    background:#0a4d3c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    cursor:pointer;
    animation:pulse 2s infinite;
}

.play-btn:after{
    content:'▶';
    color:white;
    font-size:32px;
}

@keyframes pulse {
    0% { transform:translate(-50%, -50%) scale(1); }
    50% { transform:translate(-50%, -50%) scale(1.15); }
    100% { transform:translate(-50%, -50%) scale(1); }
}

/* Small round image */
.small-img{
    width:180px;
    height:180px;
    border-radius:50%;
    border:10px solid white;
    overflow:hidden;
    position:absolute;
    left:-60px;
    top:40%;
    z-index: 99;
}

.small-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Responsive */
@media(max-width:900px){
    .small-img{
        left:50%;
        transform:translateX(-50%);
        top:-90px;
    }
    .video-box{ 
        margin-top:120px; 
    }
    
}
@media(max-width:700px){
  .video-box{ 
        height: auto;
    }
}

@media(max-width:320px){
    .right-updiv {
        margin: -56px 0px 20px 0px;
    }
    p {
        margin-bottom: 12px;
    }
    h1 {
        margin-bottom: 10px;
    }
}
.v_player_youtube {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    align-content: center;
    text-align: center;
    font-size: 30px;
    background-color: var(--light-color);
    color: var(--bg-color);
    top: 43%;
    left: 43%;
    animation: explore 4s linear infinite;
}
@keyframes  explore{
    0% {
    box-shadow: 0 0 0 -1px var(--bg-color), 0 0 0 -1px #10b695, 0 0 0 -1px #a3e9db;
}
100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 45px rgba(255, 255, 255, 0);
}
}
@media(max-width:554px){
  .v_player_youtube{
    top: 40%;
    left: 41%;
  }
}
@media(max-width:460px){
  .v_player_youtube{
    top: 37%;
    left: 38%;
  }
}
@media(max-width:394px){
  .v_player_youtube{
    top: 35%;
    left: 35%;
  }
}