/* ========================================
   ABOUT PAGE - BLACK & WHITE MINIMAL DESIGN
   Clean, professional, no decorations
   ======================================== */

/* Remove all color gradients and glows */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
}

@media screen and (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Director Profile - Clean & Minimal */
.director-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.director-image-container {
    margin-bottom: 1.5rem;
}

.director-card {
    position: relative;
    display: inline-block;
}

/* Remove all glows and fancy effects */
.director-card::before {
    display: none !important;
}

.director-photo {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 8px !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.director-card:hover .director-photo {
    transform: translateY(-4px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
    filter: none !important;
}

.director-info {
    text-align: center;
}

.director-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 0 0.5rem 0 !important;
    text-shadow: none !important;
}

.director-role {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #666666 !important;
    margin: 0 0 1rem 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-quote {
    background: #f5f5f5 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 4px !important;
    border-left: 3px solid #000000 !important;
    box-shadow: none !important;
}

.director-quote i {
    color: #999999 !important;
    font-size: 1rem !important;
    opacity: 0.5 !important;
}

.director-quote p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    font-style: italic;
    font-weight: 400 !important;
}

/* Mission & Vision - Minimal Cards */
.mission-vision-section {
    margin: 4rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mission-card,
.vision-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px) !important;
    border-color: #000000 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 60px !important;
    height: 60px !important;
    background: #000000 !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem !important;
    box-shadow: none !important;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
}

/* Technologies Section - Minimal Grid */
.technologies-section {
    margin: 4rem 0;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 2rem !important;
    box-shadow: none !important;
}

.tech-category h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000000 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.tech-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 1rem !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    width: 70px !important;
    height: 80px !important;
    justify-content: center !important;
}

.tech-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-color: #000000 !important;
}

/* Convert all colored icons to grayscale */
.tech-item i {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
    filter: grayscale(100%) !important;
    opacity: 1 !important;
    color: #000000 !important;
}

.tech-item:hover i {
    opacity: 1 !important;
    transform: scale(1.1);
}

.tech-item small {
    color: #666666 !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    text-align: center;
}

/* CTA Section - Minimal */
.about-cta {
    background: #f5f5f5 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    margin-top: 4rem !important;
    box-shadow: none !important;
}

.about-cta::before {
    display: none !important;
}

.about-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-cta .btn-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.about-cta .btn-primary:hover {
    background: #333333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Section Headers - Minimal */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

/* About Text */
.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

/* Remove ALL gradients, glows, and colors */
* {
    background-image: none !important;
}

/* Ensure black and white theme */
.about {
    background: #fafafa !important;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 2rem 0;
    }
    
    .director-photo {
        width: 160px !important;
        height: 160px !important;
    }
    
    .director-name {
        font-size: 1.3rem !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem !important;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta {
        padding: 2rem 1.5rem !important;
    }
}
