/* css/vision-mission.css */
/* Vision & Mission Page Specific Styles */

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.92)), 
                url('../images/Stock/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(96, 165, 250, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

/* Preamble Section */
.preamble {
    background: var(--bg-white);
}

.preamble-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.preamble-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.preamble-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.preamble-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Vision Mission Section */
.vision-mission {
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.vm-icon i {
    font-size: 1.8rem;
    color: white;
}

.vm-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
    flex-shrink: 0;
}

.vm-card > p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    flex-grow: 1;
}

.vm-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    flex-grow: 1;
}

.vm-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.vm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Objectives Section */
.objectives {
    background: var(--bg-white);
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.objective-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.objective-icon i {
    font-size: 1.4rem;
    color: white;
}

.objective-content {
    flex: 1;
}

.objective-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.objective-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px;
    background: var(--bg-white);
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
}

.gallery-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .vm-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .vm-card {
        padding: 35px 30px;
    }

    .vm-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .objective-card {
        padding: 30px 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-item img {
        height: 300px;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .vm-card {
        padding: 25px 20px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .vm-icon i {
        font-size: 1.5rem;
    }

    .vm-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .vm-list li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}