/*==============================
SOCH SPLIT HERO
PART - 1
==============================*/

:root{

    --primary:#003b73;
    --secondary:#2476d8;
    --accent:#ffcc29;
    --white:#ffffff;
    --text:#dbe8ff;
    --border:rgba(255,255,255,.15);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

.soch-split-section{

    display:flex;
    min-height:100vh;
    overflow:hidden;
    position:relative;

}

.split-panel{

    width:50%;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 70px;
    overflow:hidden;

}

/*==========================
COURSE SIDE
===========================*/

.courses-panel{

    background:
    radial-gradient(circle at top left,#2b88ff33,transparent 45%),
    linear-gradient(135deg,#003b73,#2476d8);

}

/* Floating circles */

.courses-panel::before{

    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-150px;
    left:-120px;

}

.courses-panel::after{

    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,204,41,.08);
    bottom:-120px;
    right:-80px;

}

.panel-content{

    position:relative;
    z-index:5;
    max-width:620px;

}

.section-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(15px);
    font-weight:600;

}

.section-tag i{

    color:var(--accent);
    font-size:20px;

}

.panel-content h2{

    font-size:58px;
    line-height:1.05;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;

}

.panel-content h2 span{

    color:var(--accent);

}

.panel-content p{

    color:var(--text);
    font-size:18px;
    line-height:1.9;
    margin-bottom:45px;

}

/*==========================
COURSE GRID
===========================*/

.courses-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:45px;

}

.course-card{

    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:22px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(20px);
    transition:.45s;

}

.course-card:hover{

    transform:translateY(-10px);
    border-color:var(--accent);
    background:rgba(255,255,255,.14);
    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.course-icon{

    width:68px;
    height:68px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--accent),#ffe47b);

}

.course-icon i{

    color:var(--primary);
    font-size:28px;

}

.course-info{

    flex:1;

}

.course-info h4{

    font-size:15px;
    margin-bottom:8px;
    line-height:1.4;

}

.course-info span{

    font-size:14px;
    color:#dce8ff;

}

.arrow{

    color:var(--accent);
    font-size:26px;
    transition:.35s;

}

.course-card:hover .arrow{

    transform:translateX(6px);

}

/*==========================
BUTTON
===========================*/

.theme-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:var(--accent);
    color:var(--primary);
    padding:16px 34px;
    border-radius:60px;
    font-weight:700;
    transition:.4s;

}

.theme-btn:hover{

    transform:translateY(-5px);
    color:var(--primary);
    box-shadow:0 15px 35px rgba(255,204,41,.35);

}

/*==========================
SERVICE SIDE
===========================*/

.services-panel{

    background:#000;

}

.service-bg{

    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    inset:0;

}

.service-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
    rgba(0,59,115,.88),
    rgba(36,118,216,.72));

}
/*==============================
SERVICES GRID
===============================*/

.services-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:45px;
max-height:520px;
overflow:auto;
padding-right:8px;

}

/* Scrollbar */

.services-grid::-webkit-scrollbar{

width:8px;

}

.services-grid::-webkit-scrollbar-thumb{

background:rgba(255,204,41,.7);
border-radius:30px;

}

.services-grid::-webkit-scrollbar-track{

background:rgba(255,255,255,.08);

}

/*==============================
SERVICE CARD
===============================*/

.service-card{

display:flex;
align-items:center;
gap:15px;
padding:18px 20px;
background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border-radius:18px;
transition:.4s;
cursor:pointer;
position:relative;
overflow:hidden;

}

.service-card::before{

content:"";
position:absolute;
left:-120%;
top:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
transparent,
rgba(255,255,255,.18),
transparent);
transition:.7s;

}

.service-card:hover::before{

left:120%;

}

.service-card:hover{

transform:translateY(-8px);
border-color:#ffcc29;
background:rgba(255,255,255,.15);
box-shadow:0 18px 35px rgba(0,0,0,.25);

}

.service-card i{

width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#ffcc29;
color:#003b73;
font-size:18px;
flex-shrink:0;

}

.service-card span{

color:#fff;
font-size:15px;
font-weight:600;
line-height:1.5;

}

/*==============================
BUTTON HOVER
===============================*/

.theme-btn i{

transition:.35s;

}

.theme-btn:hover i{

transform:translateX(6px);

}

/*==============================
ANIMATION
===============================*/

@keyframes floatUp{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

.course-icon{

animation:floatUp 5s ease-in-out infinite;

}

.course-card:nth-child(2) .course-icon{

animation-delay:.5s;

}

.course-card:nth-child(3) .course-icon{

animation-delay:1s;

}

.course-card:nth-child(4) .course-icon{

animation-delay:1.5s;

}

/*==============================
RESPONSIVE
===============================*/

@media(max-width:1200px){

.panel-content h2{

font-size:48px;

}

.split-panel{

padding:70px 40px;

}

}

/*==============================*/

@media(max-width:991px){

.soch-split-section{

flex-direction:column;

}

/* Services First */

.services-panel{

order:1;
width:100%;
min-height:850px;

}

.courses-panel{

order:2;
width:100%;

}

.split-panel{

width:100%;
padding:60px 25px;

}

.panel-content{

max-width:100%;

}

.panel-content h2{

font-size:40px;

}

.courses-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;
max-height:unset;
overflow:visible;

}

}

/*==============================*/

@media(max-width:576px){

.panel-content h2{

font-size:32px;
line-height:1.2;

}

.panel-content p{

font-size:15px;

}

.section-tag{

font-size:13px;
padding:8px 18px;

}

.course-card{

padding:18px;

}

.course-icon{

width:55px;
height:55px;

}

.course-icon i{

font-size:22px;

}

.course-info h4{

font-size:16px;

}

.course-info span{

font-size:13px;

}

.theme-btn{

width:100%;
justify-content:center;
padding:15px;

}

.service-card{

padding:15px;

}

.service-card span{

font-size:14px;

}

}

/*==============================
EXTRA PREMIUM EFFECT
===============================*/

.course-card,
.service-card{

will-change:transform;

}

.course-card:hover{

transform:translateY(-10px) scale(1.02);

}

.service-card:hover{

transform:translateY(-8px) scale(1.02);

}

.theme-btn{

position:relative;
overflow:hidden;

}

.theme-btn::before{

content:"";
position:absolute;
left:-100%;
top:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
transparent,
rgba(255,255,255,.35),
transparent);
transition:.8s;

}

.theme-btn:hover::before{

left:100%;

}
.course-card{

position:relative;
display:flex;
align-items:center;
gap:18px;
padding:22px;
background:#fff;
border-radius:22px;
text-decoration:none;
overflow:hidden;
transition:.4s;
border:1px solid rgba(255,255,255,.15);

}

.course-card::before{

content:"";
position:absolute;
left:0;
top:0;
width:5px;
height:100%;
background:#ffcc29;
transition:.35s;

}

.course-card:hover{

transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.18);

}

.course-card:hover::before{

width:100%;

opacity:.08;

}

.course-icon{

width:72px;
height:72px;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#2476d8,#003b73);
flex-shrink:0;

}

.course-icon i{

font-size:32px;
color:#ffcc29;

}

.course-info{

flex:1;

}

.course-info small{

display:block;
font-size:12px;
font-weight:600;
letter-spacing:1px;
color:#2476d8;
text-transform:uppercase;
margin-bottom:8px;

}

.course-info h4{

font-size:16px;
line-height:1.4;
font-weight:700;
color:#003b73;
margin:0;

}

.course-arrow{

width:52px;
height:52px;
border-radius:50%;
background:#ffcc29;
display:flex;
align-items:center;
justify-content:center;
transition:.35s;
flex-shrink:0;

}

.course-arrow i{

font-size:22px;
color:#003b73;

}

.course-card:hover .course-arrow{

transform:rotate(45deg) scale(1.08);

}

.course-badge{

position:absolute;
right:18px;
top:18px;
background:#003b73;
color:#fff;
font-size:11px;
padding:5px 12px;
border-radius:30px;
font-weight:600;
letter-spacing:.5px;

}

@media(max-width:576px){

.course-card{

padding:18px;

}

.course-icon{

width:58px;
height:58px;

}

.course-icon i{

font-size:24px;

}

.course-info h4{

font-size:17px;

}

.course-arrow{

width:42px;
height:42px;

}

.course-arrow i{

font-size:18px;

}

.course-badge{

font-size:10px;
padding:4px 10px;

}

}