/* --- ABOUT PAGE VARIABLES --- */
/* Note: --primary aur --secondary style.css se aa rahe hain */

/* --- 1. PAGE HEADER --- */
.page-header {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 { font-size: 3rem; font-weight: 700; margin-bottom: 10px; }
.breadcrumb { font-size: 1.1rem; color: #ccc; }
.breadcrumb .current { color: var(--secondary); font-weight: 600; }

/* --- 2. INTRO SECTION --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text { color: var(--secondary); }

.signature-area {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

.signature-font {
    font-family: 'Brush Script MT', cursive; /* Handwritten look */
    font-size: 2rem;
    color: var(--primary);
    transform: rotate(-5deg);
}

/* Image Composition */
.intro-images { position: relative; height: 400px; }
.intro-images img {
    position: absolute;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.img-1 { width: 70%; top: 0; left: 0; z-index: 1; }
.img-2 { width: 60%; bottom: 0; right: 0; z-index: 2; border: 5px solid #fff; }

.experience-badge {
    position: absolute;
    bottom: 20%; left: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 20px rgba(16, 196, 92, 0.3);
}
.experience-badge .years { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.experience-badge .text { font-size: 0.8rem; }

/* --- 3. MISSION & VISION --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
    border-top: 5px solid transparent;
}

.mv-card:hover { transform: translateY(-10px); }

.highlight-card { 
    background: var(--primary); 
    color: var(--white); 
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}
/* White icon for dark card */
.highlight-card .mv-icon { color: var(--secondary); }
.highlight-card p { color: #ddd; }
.mv-card h3 { font-size: 1.8rem; margin-bottom: 15px; }

/* --- 4. VALUES SECTION --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.value-item:hover { border-color: var(--secondary); box-shadow: var(--shadow); }
.value-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.value-item h4 { font-size: 1.2rem; margin-bottom: 10px; }

/* --- 5. TIMELINE SECTION (Dark) --- */
.bg-dark-blue { background-color: var(--primary); color: var(--white); }
.white-header h2 { color: var(--white); }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* The Line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    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(--white);
    border: 4px solid var(--secondary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }

.timeline-item .content {
    padding: 20px 30px;
    background-color: rgba(255,255,255,0.1);
    position: relative;
    border-radius: 6px;
}
.timeline-item h3 { color: var(--secondary); margin-bottom: 5px; }

/* --- ABOUT MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .intro-grid, .mv-grid { grid-template-columns: 1fr; }
    .intro-images { display: none; /* Mobile pe images hide ya simple kar saktay hain */ }
    
    /* Timeline Mobile Fix */
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 21px; }
    .right { left: 0; }
}

/* --- FINAL CTA SECTION (White) --- */
.final-cta {
    background-color: var(--white);
    border-top: 1px solid #eee; /* Halka sa border separation ke liye */
}

.final-cta h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.final-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dark Outline Button Style */
.btn-dark-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.btn-dark-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}