/* Hero Banner */
.hero-banner {
    background-image: url('images/success stories Head.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-banner::before, .hero-banner::after { content: none !important; background: transparent !important; }
.hero-banner { background-color: transparent; }
.hero-overlay::before, .hero-overlay::after { content: none !important; background: transparent !important; }

.hero-overlay {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    flex: 1;
}

.hero-overlay::after {
    content: '';
    flex: 2;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 100;
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Success Stories */
.top-profiles {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 40px 0;
    background: #f8f9fa;
}

.profile-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.profile-circle:hover {
    transform: scale(1.05);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: center 5%;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.profile-quote {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.story-detail { 
    display: flex; 
    flex-direction: column; 
    gap: 0; 
    padding: 3rem 5rem; 
    background: #ffffff;
}
.story-top { 
    display: flex; 
    gap: 40px; 
    align-items: flex-start; 
    margin-top: 0;
    background: #ffffff;
    margin-bottom: 20px;
}
.story-left { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    background: #606D61; 
    padding: 20px; 
    width: 50%;
    min-height: 350px;
    justify-content: center;
}
.story-right { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 50%; 
}
.story-copy {
    display: flex;
    gap: 40px;
    margin-top: 20px; 
    width: 100%; 
    position: relative;
    background: #ffffff;
    align-items: flex-start;
}

.story-copy-left {
    flex: 1;
    color: #333;
    text-align: justify;
    line-height: 1.3;
    font-size: 0.95rem;
    margin-top: -8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.story-copy-left p {
    margin-bottom: 8px;
    line-height: 1.3;
}

.story-copy-right {
    flex: 1;
    color: #333;
    text-align: justify;
    line-height: 1.3;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.story-copy-right p {
    margin-bottom: 8px;
    line-height: 1.3;
}
.badge img { 
    width: 300px; 
    height: auto; 
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.identity { 
    text-align: center; 
    margin-top: 15px;
}
.identity h3 { 
    margin: 8px 0 4px; 
    font-weight: 700; 
    color: #ffffff; 
    font-size: 1.3rem; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.identity p { 
    color: #ffffff; 
    margin: 0; 
    font-size: 1rem; 
    opacity: 0.9;
}
.story-portrait { 
    width: 100%; 
    height: auto; 
    max-width: 400px;
    object-fit: cover;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
	.hero-title { font-size: 2.6rem; }
	.hero-subtitle { font-size: 1.6rem; }
	.story-top { gap: 24px; }
	.story-portrait { max-width: 360px; width: 75%; }
	.story-left { min-height: 280px; }
	.story-detail { padding: 1.5rem 3rem; }
}

@media (max-width: 992px) {
	.story-top { flex-direction: column; gap: 20px; }
	.story-left, .story-right { width: 100%; }
	.story-left { min-height: 200px; padding: 15px; }
	.badge img { width: 180px; }
	.story-copy { 
		display: flex; 
		flex-direction: column; 
		gap: 20px; 
		margin-top: 20px;
	}
	.story-copy-left { 
		margin-top: 0; 
	}
	.story-portrait { max-width: 320px; width: 70%; }
	.story-detail { padding: 1rem 2rem; }
}

@media (max-width: 768px) {
	.profile-name { font-size: 0.8rem; }
	.profile-quote { font-size: 0.7rem; }
	.hero-title { font-size: 2rem; }
	.hero-subtitle { font-size: 1.2rem; }
	.story-detail { padding: 0 1.5rem 1.5rem; }
	.story-left { min-height: 180px; padding: 12px; }
	.story-copy { gap: 16px; }
	.badge img { width: 300px; }
	.story-portrait { max-width: 280px; width: 65%; }
	.header-banner { height: 40px; }
}

@media (max-width: 576px) {
    .top-profiles {gap:50px;}
    .profile-circle {width: 150px; height: 150px;}
	.profile-name { font-size: 0.75rem; }
	.profile-quote { font-size: 0.65rem; }
	.story-detail { padding: 0 1rem 1rem; }
	.story-left { min-height: 160px; padding: 10px; }
	.badge img { width: 300px; }
	.story-portrait { max-width: 240px; width: 70%; }
	.story-copy { padding: 0 5px; }
	.header-banner { height: 30px; }
}