/* ============================================
   About Page Specific Styles
   ============================================ */




.custom-card {
					background-color: #f8f9fa;
					border: none;
					transition: all 0.3s ease;
					}
					
					.custom-card:hover {
					background-color: #ffffff;
					transform: translateY(-5px);
					box-shadow: 0 10px 25px rgba(0,0,0,0.1);
					}


/* Wrapper */
.case-hover-wrapper {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover effect */
.case-hover-wrapper:hover {
    border-color: #00a86b;
    background: #f8fffc;
}

/* Title */
.case-title h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Hidden by default */
.case-details {
    display: none;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
    justify-content: center;
}

/* Show details on hover */
.case-hover-wrapper:hover .case-details {
    display: flex;
}

/* Odd items: Text Left | Image Right */
.case-hover-wrapper:nth-of-type(odd) .case-details {
    flex-direction: row-reverse;
}

/* Even items: Image Left | Text Right */
.case-hover-wrapper:nth-of-type(even) .case-details {
    flex-direction: row;
}

/* Image */
.case-image img {
    width: 250px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Zoom effect */
.case-hover-wrapper:hover img {
    transform: scale(1.05);
}

/* Text */
.case-text {
    width: 55%;
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    .case-details,
    .case-hover-wrapper:nth-of-type(odd) .case-details,
    .case-hover-wrapper:nth-of-type(even) .case-details {
        flex-direction: column;
        text-align: center;
    }

    .case-text {
        width: 100%;
        text-align: center;
    }

    .case-image img {
        width: 100%;
        max-width: 300px;
    }
}


.scrolling-text-wrapper {
		background: linear-gradient(90deg, #0f7bbf, #12b886);
		overflow: hidden;
		padding: 14px 0;
		}
		
		.scrolling-text {
		display: flex;
		width: max-content;
		animation: scrollText 25s linear infinite;
		}
		
		/* TEXT STYLE */
		.scrolling-text span {
		font-size: 22px;       /* 👈 text bada */
		font-weight: 700;      /* bold */
		color: #fff;
		margin: 0 50px;        /* 👈 spacing between lines */
		white-space: nowrap;
		}
		
		/* Animation */
		@keyframes scrollText {
		0% {
		transform: translateX(100%);
		}
		100% {
		transform: translateX(-100%);
		}
		}































/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(0, 102, 204, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920') center/cover;
    padding: 50px 0 50px;
    color: #fff;
    position: relative;
    margin-top: 76px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Mission & Vision Section */
.mission-vision {
    background: #fff;
}

.content-wrapper {
    padding: 2rem 0;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 107, 0.1) 100%);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.vision-stats {
    margin-top: 2rem;
}

.stat-box {
    background: var(--gradient-primary);
    color: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-box p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.image-wrapper img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* History Timeline */
.history-timeline {
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    top: 0;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    top: 2rem;
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-info .social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-info .social-links a {
    width: 35px;
    height: 35px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-info .social-links a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Values Section */
.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 107, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: #fff;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .team-image {
        height: 250px;
    }
}