/* css/about.css */

/* Hero */
.bg-gradient-dark {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

/* Intro Image */
.translate-middle-x-n {
    transform: translateX(-15px) translateY(15px);
}

/* Quote Icon Opacity */
.opacity-5 {
    opacity: 0.05;
}

/* Vision / Mission Hover */
.hover-darken {
    background-color: #212529; /* Dark bg default */
}
.hover-darken:hover {
    background-color: #1a1e21; /* Slightly darker */
    transform: translateY(-5px);
}

/* Timeline Responsive Fixes */
@media (max-width: 767px) {
    /* Hide the line on mobile or adjust it */
    .timeline-line {
        left: 20px !important;
        transform: none !important;
    }
    
    /* Align all content to right of line */
    .timeline-item .col-md-5 {
        text-align: left !important;
        padding-left: 50px;
        order: 3 !important;
        margin-bottom: 20px;
    }

    .timeline-item .col-md-2 {
        display: none; /* Hide the center dot column structure on mobile */
    }
    
    /* Create a pseudo dot for mobile */
    .timeline-item {
        position: relative;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 20px;
        width: 15px;
        height: 15px;
        background: var(--primary-red);
        border-radius: 50%;
        border: 2px solid #fff;
        z-index: 2;
    }
    
    /* Remove alternate borders on mobile to keep uniform look */
    .border-end.border-danger {
        border-right: none !important;
        border-left: 4px solid var(--primary-red) !important;
    }
}