/* Enhanced styles with more interest: gradients, animations, responsive grids */
.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('image/banner2.jpeg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.story-image {
    max-width: 100%;
    height: 300px;
    border-radius: 150px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}
.gradient-bg .section-title { color: var(--white); }
.gradient-bg .section-title::after { background: var(--white); }
.gradient-bg p { color: var(--white); }

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Rotate Animation */
.rotate-animation {
    transition: transform 0.5s ease;
}
.rotate-animation:hover {
    transform: rotate(5deg);
}

/* Bounce Animation */
.bounce-animation {
    animation: bounce 1s ease-in-out;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.tab-content img {
    object-fit: cover;
    max-width: 100%;
    height: 350px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--secondary-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }
.timeline-content {
    padding: 20px 30px;
    background: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.timeline-content:hover { transform: translateY(-5px); }
.timeline-content h3 { color: var(--primary-color); }

/* Grid Enhancements */
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Counters Enhancements */
.counter-item {
    transition: transform 0.3s, box-shadow 0.3s;
}
.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Tab and Accordion Enhancements */
.tab-button, .accordion-header {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.tab-button:hover, .accordion-header:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-item { width: 100%; padding: 10px 20px; }
    .timeline-item.right { left: 0%; }
    .timeline::after { left: 31px; }
    .timeline-item::after { left: 21px; }
}