/* TITLE */
body{
padding-top:20px;
}
.container{
max-width:1280px;

padding:30px 10px 40px;

margin-top:20px;
}
/* SUCCESS HEADER */

.success-header{
display:flex;
justify-content:space-between;
align-items:flex-start;

margin-bottom:20px;

padding-left:-5px;
}

.success-header-left{
max-width:700px;

margin-left:-15px;
}
.success-title{
font-size:48px;
font-weight:800;
margin-bottom:12px;
letter-spacing:-1px;

background:linear-gradient(90deg,#0072ce,#00a651);
background-clip:text;
-webkit-background-clip:text;

color:transparent;
-webkit-text-fill-color:transparent;

display:inline-block;
}

.success-line{
width:90px;
height:5px;
border-radius:20px;
background:linear-gradient(to right,#2563eb,#22c55e);
margin-bottom:18px;
}

.success-subtitle{
font-size:18px;
line-height:1.7;
color:#1e293b;
font-weight:500;
}

.success-trophy{
font-size:120px;
color:#f4b400;
margin-right:40px;
margin-top:10px;
opacity:0.95;
filter:drop-shadow(0 8px 20px rgba(244,180,0,0.25));
}

/* STORY GRID */

.story-grid{
display:flex;
flex-wrap:wrap;
gap:18px;

margin-top:10px;
margin-bottom:30px;
}

/* STORY CARD */

.story-card{
width:190px;

background:
linear-gradient(180deg,#ffffff,#f8fbff);

border-radius:22px;

padding:16px 12px;

border:2px solid transparent;

background-image:
linear-gradient(#ffffff,#f8fbff),
linear-gradient(135deg,#0072ce,#00a651);

background-origin:border-box;
background-clip:padding-box,border-box;

box-shadow:
0 8px 24px rgba(0,114,206,0.08);

transition:all .3s ease;

cursor:pointer;

text-align:center;

display:flex;
flex-direction:column;
align-items:center;

min-height:230px;
}


/* HOVER EFFECT */

.story-card:hover{
transform:translateY(-8px);

box-shadow:
0 18px 34px rgba(0,114,206,0.14);

background-image:
linear-gradient(#ffffff,#ffffff),
linear-gradient(135deg,#00a651,#0072ce);
}

/* CARD IMAGE */

.story-card img{
width:110px;
height:110px;
object-fit:cover;
border-radius:50%;
border:4px solid #f1f5f9;
transition:0.4s ease;
}
.story-image{
display:flex;
justify-content:center;
margin-bottom:16px;
}


.story-card:hover img{
transform:scale(1.1);
}

/* CARD TEXT */

.story-card h3{
font-size:20px;
font-weight:700;

line-height:1.4;

margin:12px 0 6px;

color:#005fa3;
}

.story-card p{
color:#666;
text-align:center;
font-size:14px;
margin-bottom:12px;
}

/* STORY DETAIL SECTION */

.story-layout{
display:flex;
gap:25px;
align-items:center;
background:linear-gradient(135deg,#0f3d7a,#0b2f5b);
color:white;
padding:30px;
border-radius:14px;
margin-top:40px;
opacity:0;
transform:translateY(40px);
transition:all .6s ease;
}

/* LEFT SIDE */

.story-left{
flex:1;
text-align:center;
}

.story-left img{
width:220px;
height:220px;
object-fit:cover;
border-radius:50%;
border:10px solid #7ed957;
box-shadow:0 0 0 10px rgba(126,217,87,0.25);
margin-bottom:20px;
animation:photoPulse 4s infinite;
}

.story-left h2{
font-size:30px;
font-weight:700;
margin-bottom:10px;
}

.story-left h3{
font-size:32px;
font-weight:800;
color:#7ed957;
margin-bottom:10px;
letter-spacing:1px;
}

.story-left p{
font-size:18px;
color:#c9e6ff;
}

/* RIGHT SIDE */

.story-right{
flex:2;
display:flex;
align-items:center;
}

.quote-box{
background:rgba(255,255,255,0.08);
padding:40px;
border-radius:14px;
font-size:19px;
line-height:1.9;
position:relative;
width:100%;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
/* ADD QUOTE SYMBOL DESIGN */
.quote-box::before{
content: "“";
font-size: 80px;
position: absolute;
top: -20px;
left: 10px;
color: rgba(255,255,255,0.15);
}

.quote-box::after{
content: "”";
font-size: 80px;
position: absolute;
bottom: -40px;
right: 10px;
color: rgba(255,255,255,0.15);
}
.quote-box strong{
display:block;
margin-top:20px;
font-size:22px;
color:#7ed957;
}
#detailAchievement{
font-size:42px;
font-weight:800;
color:#7ed957;
margin-bottom:10px;
letter-spacing:1px;
}

#detailSubtitle{
font-size:18px;
color:#c9e6ff;
}

/* ANIMATION */

@keyframes photoPulse{

0%{transform:scale(1)}
50%{transform:scale(1.05)}
100%{transform:scale(1)}

}

/* MOBILE */

@media(max-width:768px){

.story-layout{
flex-direction:column;
text-align:center;
padding:40px;
}

.story-left img{
width:200px;
height:200px;
}

}

.story-layout{
grid-column: 1 / -1;
}

/* TAGLINE */
.tagline{
font-size:17px;
line-height:1.7;

color:#334155;

font-weight:500;

margin-bottom:10px;

min-height:42px;
}

/* BADGE */
.badge{
background:
linear-gradient(90deg,#0072ce,#00a651);

color:white;

font-size:14px;
font-weight:700;

padding:7px 12px;

border-radius:999px;

display:inline-block;

margin-top:auto;
}

/* CENTER BADGE */
.story-card{
align-items:center;
}