/* ========================================
   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 */
.about-container .director-card::before {
    display: none;
}

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

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

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

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

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

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

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

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

/* 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-vision-section .mission-card,
.mission-vision-section .vision-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

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

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

.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;
}

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

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

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

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

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

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

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

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

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

.about-container .about-cta::before {
    display: none;
}

.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-container .about-cta .btn-primary {
    background: #000000;
    color: #ffffff;
    border: none;
    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;
}

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

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

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.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;
}

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

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

/* ========================================
   CTA SECTION - MATCHING HOME PAGE
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: #fafafa;
}

.cta-section .cta-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.cta-section .cta-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-section .cta-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

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

.cta-section .cta-description {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-section .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.95rem;
}

.cta-section .cta-feature i {
    color: #000000;
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE FOR CTA
   ======================================== */

@media screen and (max-width: 768px) {
    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}
