/* About Page Specific Styles */

.nav-link.active {
    color: var(--accent-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-yellow);
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    padding: 120px 0 4rem;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 93.3,25 93.3,75 50,100 6.7,75 6.7,25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.3;
}

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

.about-hero h1 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-black);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/honeycomb-pattern-new.png') repeat;
    background-size: 300px 300px;
    opacity: 0.08;
    z-index: 1;
}

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

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.about-intro p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.mission-content h2 {
    color: var(--primary-black);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/honeycomb-pattern-new.png') repeat;
    background-size: 300px 300px;
    opacity: 0.08;
    z-index: 1;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: start;
}

.value-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

/* Why Started Section */
.why-started-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.why-started-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-started-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.why-started-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-started-content p:last-child {
    margin-bottom: 0;
}

/* Sets Apart Section */
.sets-apart-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
}

.sets-apart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/honeycomb-pattern-new.png') repeat;
    background-size: 300px 300px;
    opacity: 0.08;
    z-index: 1;
}

.sets-apart-section .container {
    position: relative;
    z-index: 2;
}

.sets-apart-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: start;
}

.apart-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease;
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.apart-card:hover {
    transform: translateY(-5px);
}

.apart-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-content {
    max-width: 1000px;
    margin: 0 auto;
}

.certifications-content > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: start;
}

.cert-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* About CTA Section */
.about-cta {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/honeycomb-pattern-new.png') repeat;
    background-size: 300px 300px;
    opacity: 0.08;
    z-index: 1;
}

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

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    background: var(--accent-yellow);
    color: var(--primary-black);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro,
    .mission-content,
    .why-started-content,
    .cta-content {
        padding: 2rem;
    }
    
    .values-grid,
    .apart-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 3rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-intro,
    .mission-content,
    .why-started-content,
    .cta-content {
        padding: 1.5rem;
    }
}



/* Responsive Design for About Page Cards */
@media (max-width: 1200px) {
    .values-grid,
    .apart-grid,
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid,
    .apart-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-card,
    .apart-card,
    .cert-card {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .values-grid,
    .apart-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .apart-card,
    .cert-card {
        min-height: auto;
    }
}

