﻿/* Global Styles */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
    }

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .story-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

    .story-content h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: #ff6600;
    }

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.mission-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

    .mission-box h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .mission-box p {
        margin: 0;
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.05rem;
    }

/* Directors Message */
.directors-message {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 50px;
}

.message-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

    .message-card p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #555;
        margin-bottom: 25px;
    }

        .message-card p:last-child {
            margin-bottom: 0;
        }

.director-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .director-card:hover {
        transform: translateY(-5px);
    }

.director-avatar img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.director-card:hover .director-avatar img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.directors-section h5 {
    margin-bottom: 0.25rem;
    color: #111;
}

.directors-section p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}


/* Core Values */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ff6600;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

    .value-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .value-icon i {
        font-size: 2rem;
        color: white;
    }

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1rem;
}

/* Industry Experience */
.experience-section {
    background: #f6f8fb !important;
    padding: 90px 0 !important;
    position: relative;
}

    .experience-section h2 {
        font-size: 2.6rem;
        font-weight: 800;
        color: #1e3c72;
        margin-bottom: 10px;
        position: relative;
    }

        .experience-section h2::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 130px;
            height: 4px;
            transform: translateX(-50%);
            border-radius: 6px;
            background: linear-gradient(90deg, #ff6600, #ff8e3c);
        }

    .experience-section p {
        max-width: 750px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
    }

    /* Service Cards */
    .experience-section .card {
        border-radius: 16px !important;
        border: none !important;
        background: #ffffff;
        padding: 4px;
        transition: all .35s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.09);
        position: relative;
        overflow: hidden;
    }

        /* Card Hover Effect */
        .experience-section .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.17);
        }

        /* Card Top Accent Line */
        .experience-section .card::before {
            content: "";
            position: absolute;
            top: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff6600, #ff8533);
            opacity: 0.8;
        }

    /* Icon Styling */
    .experience-section ul li i {
        color: #ff6600 !important;
        font-size: 0.9rem;
    }

    /* Title Styling */
    .experience-section h5 {
        font-size: 1.3rem;
        font-weight: 700;
    }

    /* Waste Management Special Highlight Card */
    .experience-section .card:nth-child(8) {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        color: white !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }

        .experience-section .card:nth-child(8) h5,
        .experience-section .card:nth-child(8) h6,
        .experience-section .card:nth-child(8) p,
        .experience-section .card:nth-child(8) ul li {
            color: white !important;
        }

            .experience-section .card:nth-child(8) ul li i {
                color: #ffcc66 !important;
            }

        .experience-section .card:nth-child(8):hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.3);
            filter: brightness(1.05);
        }


/* Responsive Design */
@@media (max-width: 992px) {
    .story-grid {
        display: none;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title,
    .section-title-white {
        font-size: 2rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .message-card,
    .quality-card {
        padding: 35px 25px;
        text-align: justify;
    }

    .directors-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
    }
}

@@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
    }

    .story-section,
    .directors-message,
    .directors-section,
    .values-section,
    .experience-section,
    .quality-section,
    .cta-section {
        padding: 60px 0;
    }
}


/* Quality Policy */
.quality-section {
    padding: 80px 0;
    color: white;
}

.quality-card {
    background: white;
    color: #1a1a1a;
    padding: 50px;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

    .quality-card p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #555;
        margin-bottom: 25px;
    }

        .quality-card p:last-child {
            margin-bottom: 0;
        }

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #ff6600;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: #ff6600;
    }

