/* About Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding-top: 120px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure navbar stays above hero but below menu button */
.navbar {
    z-index: 90;
}

.menu-btn {
    z-index: 91;
}
.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.8rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Company Intro Section */
.company-intro {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, #fff, var(--light));
    position: relative;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.intro-image {
    position: relative;
    padding: 2rem;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 30px;
    transform: translate(20px, 20px);
    z-index: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.intro-image:hover img {
    transform: translate(10px, 10px);
}

/* Vision Mission Section */
.vision-mission {
    padding: 8rem 5%;
    background: var(--light);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.vm-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-15px);
}

.vm-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    background: var(--light);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.4s ease;
}

.vm-card:hover i {
    transform: rotateY(360deg);
}

.vm-card h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Journey Section */
.journey-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, #fff, var(--light));
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-date {
    position: absolute;
    width: 150px;
    padding: 1rem 1.5rem;
    background: var(--gradient);
    color: white;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.2);
    right: -200px;
}

.timeline-item:nth-child(odd) .timeline-date {
    left: -200px;
    right: auto;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    width: calc(100% - 50px);
    position: relative;
    transition: transform 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -60px;
    right: auto;
}

.timeline-content:hover::before {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.2);
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

/* Awards Section */
.awards-section {
    padding: 8rem 5%;
    background: linear-gradient(to bottom right, var(--light) 60%, rgba(46, 204, 113, 0.1));
    position: relative;
    overflow: hidden;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.award-card {
    background: white;
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.award-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.award-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.4s ease;
}

.award-card:hover .award-icon {
    transform: rotateY(360deg);
}

.award-icon i {
    font-size: 2.5rem;
    color: white;
}

.award-year {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.award-card h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.award-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.award-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) {
        margin-left: 0;
        padding-left: 80px;
    }

    .timeline-date {
        left: 0;
        right: auto;
        top: -50px;
        width: auto;
    }

    .timeline-item:nth-child(odd) .timeline-date {
        left: 0;
    }

    .timeline-content::before {
        left: -45px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -45px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .intro-text h2 {
        font-size: 2.8rem;
    }
    
    .vm-card {
        padding: 3rem;
    }
}

/* Certifications Section */
.certifications {
    padding: 8rem 5%;
    background: white;
    text-align: center;
}

.certifications h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 4rem;
    font-weight: 700;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

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

.cert-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.cert-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: #666;
    font-size: 1.1rem;
}/* Our Reach Section */
.reach-section {
    padding: 8rem 5%;
    background: var(--light);
}

.reach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reach-map {
    position: relative;
    margin-bottom: 4rem;
}

.reach-map img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.reach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Video Showcase Section */
.video-showcase {
    padding: 8rem 5%;
    background: white;
}

.video-container {
    position: relative;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.video-container:hover {
    transform: translateY(-10px);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-content h3 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.video-content p {
    font-size: 1.4rem;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .reach-stats {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        height: 400px;
    }
    
    .video-content h3 {
        font-size: 2.5rem;
    }
    
    .video-content p {
        font-size: 1.2rem;
    }
}
