:root {
    --primary-teal: #00d2d3;
    --primary-blue: #0984e3;
    --dark-text: #2d3436;
    --light-gray: #706f6f;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, rgba(0, 210, 211, 0.9), rgba(9, 132, 227, 0.9));
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-text);
    background-color: var(--light-gray);
    margin: 0;
}


/* Hero Style */
.about-hero {
    height: 350px;

    background: linear-gradient(rgba(26, 95, 206, 0.85), rgba(24, 183, 152, 0.8)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 0 0 50px 50px;
}

.hero-content h1 { font-size: 3rem; margin: 0; }

/* Strategic Goals (Mission/Vision/Values) */
.strategic-goals {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: -50px auto 50px;
    padding: 0 20px;
}

.goal-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.goal-card .icon { font-size: 2.5rem; margin-bottom: 10px; }
.goal-card h3 { color: var(--primary-blue); margin-bottom: 15px; }

/* Transport Types Grid */
.transport-types > h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; color: var(--primary-blue); }
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.type-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--primary-teal);
}

.type-card .emoji { font-size: 3rem; }

/* Details Section */
.details-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.detail-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

.detail-box h3 { color: var(--primary-blue); border-left: 5px solid var(--primary-teal); padding-left: 10px; }
.detail-box ul { padding-left: 20px; }
.detail-box li { margin-bottom: 10px; }

/* Footer summary */
.about-footer {
    text-align: center;
    padding: 50px 20px;
    background: #e9ecef;
    color: #495057;
    font-style: italic;
}
/* --- Keep your existing variables and body styles --- */
:root {
    --primary-teal: #00d2d3;
    --primary-blue: #0984e3;
    --dark-text: #2d3436;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, rgba(0, 210, 211, 0.9), rgba(9, 132, 227, 0.9));
}

/* --- Strategic Goal Card Hover --- */
.goal-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    /* Transition makes the movement smooth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    cursor: default;
}

.goal-card:hover {
    transform: translateY(-12px); /* Lifts the card up */
    box-shadow: 0 20px 35px rgba(0,0,0,0.15); /* Deepens the shadow */
    border-bottom: 4px solid var(--primary-teal); /* Adds a bottom highlight */
}

/* --- Transport Type Card Hover --- */
.type-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: scale(1.05); /* Slightly grows the card */
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-blue); /* Changes top border color */
}

/* --- Detail Box Hover --- */
.detail-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: border-left 0.3s ease;
}

.detail-box:hover {
    border-left: 8px solid var(--primary-blue); /* Makes the accent line thicker on hover */
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}
