/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #00bfde 0%, #4A90E2 50%, #00bfde 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Floating Elements */
.floating-elements,
.floating-elements-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/*.story-text {*/
/*    text-align: right;*/
/*}*/

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1.5rem;
}

.story-paragraph {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 20px;
    background: #F5F5F5;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media(min-width: 1024px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.card-hover:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.gradient-purple {
    background: linear-gradient(135deg, #00bfde, #4A90E2);
}

.gradient-orange {
    background: linear-gradient(135deg, #F5A623, #e6951f);
}

.card-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.card-title {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(90deg, #00bfde 0%, #4A90E2 100%);
    color: white;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.stats-container {
    position: relative;
    z-index: 10;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media(min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #F5A623;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 1.5rem;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 20px;
    background: #F5F5F5;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: #00bfde;
}

@media(max-width: 1023px) {
    .timeline-line {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.timeline-right {
    justify-content: flex-start;
}

.timeline-left {
    justify-content: flex-end;
}

@media(max-width: 1023px) {
    .timeline-right,
    .timeline-left {
        justify-content: flex-start;
        padding-left: 60px;
    }
}

.timeline-content {
    width: 45%;
    text-align: right;
}

@media(max-width: 1023px) {
    .timeline-content {
        width: 100%;
    }
}

.timeline-left .timeline-content {
    text-align: left;
}

@media(max-width: 1023px) {
    .timeline-left .timeline-content {
        text-align: right;
    }
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #00bfde;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

@media(max-width: 1023px) {
    .timeline-dot {
        left: 20px;
    }
}

.timeline-dot::after {
    content: '';
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
}

.badge {
    display: inline-block;
    background: #F5A623;
    color: black;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #00bfde 0%, #4A90E2 50%, #00bfde 100%);
    color: white;
}

.cta-container {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 2rem;
}

.cta-button {
    background: #F5A623;
    color: black;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6951f;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

