/* ==================== Development Vision Page ==================== */

/* Section Header */
.development_content { width: 100%; padding-bottom: 6rem; padding-top: 3rem;}

.dev_section_header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.dev_subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #73aa83;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.dev_subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #73aa83, #e8c72b);
}

.dev_title {
    font-size: 48px;
    font-weight: 700;
    color: #173630;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
}

.dev_desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.dev_cards_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Card Item */
.dev_card_item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 20px 50px rgba(23, 54, 48, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dev_card_item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(23, 54, 48, 0.25);
}

/* Card Background */
.dev_card_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.dev_card_item:hover .dev_card_bg {
    transform: scale(1.1);
}

.dev_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255,  0.1) 0%, 
        rgba(23, 54, 48, 0.75) 100%);
    transition: all 0.4s ease;
}

.dev_card_item:hover .dev_card_overlay {
    background: linear-gradient(180deg, 
        rgba(0, 153, 70,  0.3) 0%, 
        rgba(23, 54, 48, 0.6) 50%,
        rgba(23, 54, 48, 0.98) 100%);
}

/* Card Content */
.dev_card_content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.dev_card_number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    transition: all 0.4s ease;
}

.dev_card_item:hover .dev_card_number {
    color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.dev_card_gold .dev_card_number {
    color: rgba(255, 255, 255, 0.25);
}

.dev_card_gold:hover .dev_card_number {
    color: rgba(232, 199, 43, 0.4);
}

.dev_card_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009946 0%, #009946 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(115, 170, 131, 0.4);
    transition: all 0.4s ease;
}

.dev_card_item:hover .dev_card_icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(115, 170, 131, 0.5);
}

.dev_icon_gold {
    background: linear-gradient(135deg, #e8c72b 0%, #d4b526 100%);
    box-shadow: 0 10px 30px rgba(232, 199, 43, 0.4);
}

.dev_card_item:hover .dev_icon_gold {
    box-shadow: 0 15px 40px rgba(232, 199, 43, 0.5);
}

.dev_card_icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.dev_card_title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Jost', sans-serif;
}

/* Card List */
.dev_card_list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.dev_card_list li {
    position: relative;
    padding: 12px 0 12px 25px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dev_card_list li:last-child {
    border-bottom: none;
}

.dev_card_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #83eab2 0%, #83eab2 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dev_card_list li:hover {
    color: #fff;
    padding-left: 30px;
}

.dev_card_list li:hover::before {
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 10px rgba(115, 170, 131, 0.8);
}

.dev_values_list li::before {
    background: linear-gradient(135deg, #e8c72b 0%, #d4b526 100%);
}

.dev_values_list li:hover::before {
    box-shadow: 0 0 10px rgba(232, 199, 43, 0.8);
}

.dev_highlight {
    background: rgba(115, 170, 131, 0.2);
    border-radius: 8px;
    padding: 15px 15px 15px 25px !important;
    margin-top: 10px;
    font-weight: 600;
    color: #fff !important;
}

.dev_highlight::before {
    background: #e8c72b !important;
}

/* Philosophy Tags */
.dev_philosophy_tags {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dev_tag {
    display: inline-block;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(232, 199, 43, 0.5);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.dev_tag:hover {
    background: linear-gradient(135deg, #e8c72b 0%, #d4b526 100%);
    border-color: #e8c72b;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(232, 199, 43, 0.3);
}

/* Responsive */
@media (max-width: 1199px) {
    .dev_cards_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .dev_title {
        font-size: 36px;
    }
    
    .dev_cards_grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .dev_card_item {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .dev_section_header {
        margin-bottom: 40px;
    }
    
    .dev_title {
        font-size: 28px;
    }
    
    .dev_card_content {
        padding: 30px 20px;
    }
    
    .dev_card_number {
        font-size: 56px;
    }
    
    .dev_card_title {
        font-size: 22px;
    }
    
    .dev_card_list li {
        font-size: 14px;
    }
}

/* ==================== History Timeline ==================== */
.history_timeline_wrap {
    padding: 40px 0;
}

/* Timeline Navigation */
.timeline_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.timeline_nav_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #73aa83;
    background: #fff;
    color: #73aa83;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline_nav_btn:hover {
    background: #73aa83;
    color: #fff;
    transform: scale(1.1);
}

.timeline_nav_btn svg {
    width: 24px;
    height: 24px;
}

.timeline_years {
    display: flex;
    gap: 20px;
    position: relative;
}

.timeline_year {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.timeline_year::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #73aa83, #e8c72b);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.timeline_year:hover {
    color: #73aa83;
}

.timeline_year.active {
    color: #173630;
}

.timeline_year.active::after {
    width: 100%;
}

/* Timeline Slider */
.timeline_slider {
    position: relative;
    overflow: hidden;
}

.timeline_slides {
    position: relative;
    min-height: 450px;
}

.timeline_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline_slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.timeline_slide.prev {
    transform: translateX(-50px);
}

/* Timeline Content */
.timeline_content {
    padding: 20px;
}

.timeline_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(23, 54, 48, 0.15);
}

.timeline_image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline_image:hover img {
    transform: scale(1.05);
}

.timeline_year_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #73aa83 0%, #5a9470 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 10px 30px rgba(115, 170, 131, 0.4);
}

.timeline_text {
    padding: 20px 30px;
}

.timeline_title {
    font-size: 32px;
    font-weight: 700;
    color: #173630;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
}

.timeline_desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.timeline_highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline_highlights li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px dashed rgba(115, 170, 131, 0.2);
    transition: all 0.3s ease;
}

.timeline_highlights li:last-child {
    border-bottom: none;
}

.timeline_highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #73aa83 0%, #5a9470 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline_highlights li:hover {
    color: #73aa83;
    padding-left: 35px;
}

.timeline_highlights li:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 15px rgba(115, 170, 131, 0.5);
}

/* Timeline Progress */
.timeline_progress {
    width: 100%;
    height: 4px;
    background: rgba(115, 170, 131, 0.2);
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
}

.timeline_progress_bar {
    height: 100%;
    background: linear-gradient(90deg, #73aa83, #e8c72b);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .timeline_nav {
        gap: 15px;
    }
    
    .timeline_years {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timeline_year {
        padding: 8px 16px;
        font-size: 16px;
    }
    
    .timeline_image img {
        height: 280px;
    }
    
    .timeline_text {
        padding: 30px 0 0;
    }
    
    .timeline_title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .timeline_nav {
        gap: 10px;
    }
    
    .timeline_nav_btn {
        width: 40px;
        height: 40px;
    }
    
    .timeline_year {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .timeline_image img {
        height: 220px;
    }
    
    .timeline_title {
        font-size: 22px;
    }
    
    .timeline_desc {
        font-size: 14px;
    }
}

/* ==================== History Timeline ==================== */
.history_timeline_wrap {
    padding: 40px 0;
}

/* Timeline Navigation */
.timeline_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.timeline_nav_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #73aa83;
    background: #fff;
    color: #73aa83;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline_nav_btn:hover {
    background: #73aa83;
    color: #fff;
    transform: scale(1.1);
}

.timeline_nav_btn svg {
    width: 24px;
    height: 24px;
}

.timeline_years {
    display: flex;
    gap: 20px;
    position: relative;
}

.timeline_year {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.timeline_year::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #73aa83, #e8c72b);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.timeline_year:hover {
    color: #73aa83;
}

.timeline_year.active {
    color: #173630;
}

.timeline_year.active::after {
    width: 100%;
}

/* Timeline Slider */
.timeline_slider {
    position: relative;
    overflow: hidden;
}

.timeline_slides {
    position: relative;
    min-height: 450px;
}

.timeline_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline_slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.timeline_slide.prev {
    transform: translateX(-50px);
}

/* Timeline Content */
.timeline_content {
    padding: 20px;
}

.timeline_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(23, 54, 48, 0.15);
}

.timeline_image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline_image:hover img {
    transform: scale(1.05);
}

.timeline_year_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #73aa83 0%, #5a9470 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 10px 30px rgba(115, 170, 131, 0.4);
}

.timeline_text {
    padding: 20px 30px;
}

.timeline_title {
    font-size: 32px;
    font-weight: 700;
    color: #173630;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
}

.timeline_desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.timeline_highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline_highlights li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px dashed rgba(115, 170, 131, 0.2);
    transition: all 0.3s ease;
}

.timeline_highlights li:last-child {
    border-bottom: none;
}

.timeline_highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #73aa83 0%, #5a9470 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline_highlights li:hover {
    color: #73aa83;
    padding-left: 35px;
}

.timeline_highlights li:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 15px rgba(115, 170, 131, 0.5);
}

/* Timeline Progress */
.timeline_progress {
    width: 100%;
    height: 4px;
    background: rgba(115, 170, 131, 0.2);
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
}

.timeline_progress_bar {
    height: 100%;
    background: linear-gradient(90deg, #73aa83, #e8c72b);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .timeline_nav {
        gap: 15px;
    }
    
    .timeline_years {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timeline_year {
        padding: 8px 16px;
        font-size: 16px;
    }
    
    .timeline_image img {
        height: 280px;
    }
    
    .timeline_text {
        padding: 30px 0 0;
    }
    
    .timeline_title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .timeline_nav {
        gap: 10px;
    }
    
    .timeline_nav_btn {
        width: 40px;
        height: 40px;
    }
    
    .timeline_year {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .timeline_image img {
        height: 220px;
    }
    
    .timeline_title {
        font-size: 22px;
    }
    
    .timeline_desc {
        font-size: 14px;
    }
}