/* About Page Specific Styles */
/* This file extends the main styles.css with About page-specific styling */

/* About Main Content */
.about-main {
    padding-top: 0;
}

/* Introduction Section */
.about-intro {
    padding: 80px 0;
    background: #131212;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.about-intro .container {
    position: relative;
    z-index: 2;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 18, 18, 0.7);
    z-index: 1;
}

.intro-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.intro-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    font-style: italic;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #094c23;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Vision Section */
.about-vision {
    padding: 80px 0;
    background: #131212;
    color: #fff;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.vision-content h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #094c23;
    border-radius: 3px;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

.section-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Innovation Section */
.about-innovation {
    padding: 80px 0;
    background: #0f0f0f;
    color: #fff;
}

.innovation-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.innovation-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #ccc;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.innovation-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #094c23;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-10px);
    background: #222;
    border-color: #094c23;
}

.innovation-card:hover::before {
    transform: translateX(0);
}

.innovation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.innovation-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Culture Section */
.about-culture {
    padding: 80px 0;
    background: #131212;
    color: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.culture-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.culture-content h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #094c23;
    border-radius: 3px;
}

.culture-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}



/* Footer Styles */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #34495e;
    margin-top: 40px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vision-grid,
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .intro-content {
        padding: 40px 30px;
    }
    
    .intro-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }
    
    .section-img {
        height: 300px;
    }
    
    .about-intro {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .about-vision,
    .about-innovation,
    .about-culture {
        padding: 60px 0;
    }
    
    .intro-content h2,
    .vision-content h2,
    .culture-content h2,
    .innovation-content h2 {
        font-size: 2rem;
    }
    
    .vision-content h2::before,
    .culture-content h2::before {
        display: none;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .intro-content {
        padding: 30px 20px;
        border-radius: 10px;
    }
    
    .intro-content h1 {
        font-size: 2rem;
    }
    
    .section-img {
        height: 250px;
    }
    
    .about-intro {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .about-vision,
    .about-innovation,
    .about-culture {
        padding: 40px 0;
    }
    
    .intro-content h2,
    .vision-content h2,
    .culture-content h2,
    .innovation-content h2 {
        font-size: 1.8rem;
    }
} 