.bsc-expert-section{
    padding:60px 20px;
    background:#fff;
}

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

.bsc-expert-heading{
   font-family: ProximaNova-semibold;
    font-weight: 600;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 128%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
     margin-bottom: 48px;

}

/* GRID */
.bsc-expert-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* CARD */
.bsc-expert-card {
	overflow: hidden;
	transition: all 0.3s ease;
	border: 0.1px solid #C1C1C1;
}

/* IMAGE */
.bsc-expert-img img{
    width:100%;
    display:block;
}
.bsc-expert-img img {
	height: 400px;
	object-fit: cover;
	object-position: center center;
}

/* CONTENT */
.bsc-expert-content{
    padding:20px;
}

.bsc-expert-content h3 {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: 0%;
	font-family: ProximaNova-semibold;
	color: #132238;
}

.bsc-expert-content span {
	display: block;
	color: #132238;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 20px;
	line-height: 44px;
	letter-spacing: 0%;
}

.bsc-expert-content p {
	color: #556070;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0%;
}

.bsc-expert-img img{
    transition:0.8s ease;
}

/* CARD BASE */
.bsc-expert-card{
    position: relative;
    overflow: hidden;
}

/* GLASS WAVE LAYER */
.bsc-expert-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    transition: 0.8s ease;
    pointer-events: none;
}

/* HOVER TRIGGER */
.bsc-expert-card:hover::before{
    left: 120%;
}

/* LITTLE LIFT */
.bsc-expert-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ===================== */
/* TABLET (1024px ↓) */
/* ===================== */
@media(max-width:1024px){

    .bsc-expert-heading{
        font-size:38px;
        margin-bottom:36px;
    }

    .bsc-expert-content h3{
        font-size:28px;
        line-height:36px;
    }

    .bsc-expert-content span{
        font-size:18px;
        line-height:30px;
    }

    .bsc-expert-content p{
        font-size:16px;
        line-height:22px;
    }
}


/* ===================== */
/* MOBILE (768px ↓) */
/* ===================== */
@media(max-width:768px){

    .bsc-expert-heading{
        font-size:30px;
        line-height:1.3;
        margin-bottom:30px;
    }

    .bsc-expert-content{
        padding:16px;
    }

    .bsc-expert-content h3{
        font-size:22px;
        line-height:30px;
    }

    .bsc-expert-content span{
        font-size:16px;
        line-height:26px;
    }

    .bsc-expert-content p{
        font-size:14px;
        line-height:20px;
    }
    .bsc-expert-img img {
    	height: auto;
    	object-fit: contain;
    	object-position: center center;
    }
}


/* ===================== */
/* SMALL MOBILE (480px ↓) */
/* ===================== */
@media(max-width:480px){

    .bsc-expert-heading{
        font-size:24px;
    }

    .bsc-expert-content h3{
        font-size:18px;
        line-height:24px;
    }

    .bsc-expert-content span{
        font-size:14px;
        line-height:22px;
    }

    .bsc-expert-content p{
        font-size:13px;
        line-height:18px;
    }
}
/* RESPONSIVE */
@media(max-width:768px){
    .bsc-expert-grid{
        grid-template-columns:1fr;
    }
}