﻿/* =====================================
   ABOUT PAGE CSS
   Gangtok Printing Solution
===================================== */

.about-hero {
    padding: 180px 0 120px;
     background: linear-gradient(135deg,#111827,#1f2937);
    /*background-image: url('../images/banner.jpg');*/
    text-align: center;
    color: #fff;
}

    .about-hero .section-tag {
        display: inline-block;
        background: rgba(255,255,255,.1);
        color: #ff6b00;
        padding: 10px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .about-hero h1 {
        font-size: 58px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .about-hero p {
        max-width: 850px;
        margin: auto;
        color: #d1d5db;
        font-size: 18px;
        line-height: 1.9;
    }

/* =====================================
   ABOUT SECTION
===================================== */

.about-section {
    padding: 100px 0;
    background: #fff;
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-content .section-tag {
    display: inline-block;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* =====================================
   MISSION & VISION
===================================== */

.mission-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

    .mission-card h3 {
        margin-bottom: 20px;
        color: #ff6b00;
        font-size: 28px;
    }

    .mission-card p {
        color: #666;
        line-height: 1.8;
    }

/* =====================================
   SECTION HEADER
===================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header span {
        color: #ff6b00;
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: 42px;
        color: #111827;
    }

/* =====================================
   VALUES
===================================== */

.values-section {
    padding: 100px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.value-card {
    background: #f8f9fb;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
    transition: .3s;
}

    .value-card:hover {
        background: #ff6b00;
        color: #fff;
        transform: translateY(-8px);
    }

/* =====================================
   SERVICES OVERVIEW
===================================== */

.services-overview {
    padding: 100px 0;
    background: #f8f9fb;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: .3s;
}

    .service-item:hover {
        transform: translateY(-8px);
        background: #ff6b00;
        color: #fff;
    }
/* =====================================
   FOUNDER SECTION
===================================== */

.founder-section {
    padding: 100px 0;
    background: #fff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.founder-content .section-tag {
    display: inline-block;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #111827;
}

.founder-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.founder-signature {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

    .founder-signature h4 {
        font-size: 24px;
        margin-bottom: 8px;
        color: #111827;
    }

    .founder-signature span {
        color: #ff6b00;
        font-weight: 600;
    }
.founder-quote {
    background: #fff7f2;
    border-left: 5px solid #ff6b00;
    padding: 25px;
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.8;
    border-radius: 10px;
    font-style: italic;
}
/* RESPONSIVE */

@media(max-width:991px) {

    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-content h2 {
        font-size: 32px;
    }
}
/* =====================================
   TEAM SECTION
===================================== */

.team-section {
    padding: 100px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .team-card:hover {
        transform: translateY(-8px);
    }

    .team-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .team-card h3 {
        margin-top: 25px;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .team-card span {
        display: block;
        color: #ff6b00;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .team-card p {
        padding: 0 20px 25px;
        color: #666;
        line-height: 1.7;
    }

/* =====================================
   INDUSTRIES
===================================== */

.industries-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

    .industry-grid div {
        background: #fff;
        padding: 30px;
        text-align: center;
        border-radius: 15px;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0,0,0,.05);
    }

/* =====================================
   STATS
===================================== */

.stats-section {
    padding: 100px 0;
    background: #111827;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    color: #fff;
}

    .stat-box h3 {
        font-size: 52px;
        color: #ff6b00;
        margin-bottom: 10px;
    }

    .stat-box p {
        font-size: 18px;
    }

/* =====================================
   CTA
===================================== */

.about-cta {
    padding: 100px 0;
    background: #ff6b00;
    text-align: center;
    color: #fff;
}

    .about-cta h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .about-cta p {
        max-width: 700px;
        margin: auto;
        margin-bottom: 35px;
        line-height: 1.8;
    }

    .about-cta a {
        display: inline-block;
        background: #fff;
        color: #ff6b00;
        text-decoration: none;
        padding: 16px 35px;
        border-radius: 12px;
        font-weight: 600;
        transition: .3s;
    }

        .about-cta a:hover {
            transform: translateY(-3px);
        }

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px) {

    .about-grid,
    .mission-grid,
    .team-grid,
    .service-grid,
    .industry-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 140px 0 80px;
    }

        .about-hero h1 {
            font-size: 38px;
        }

    .about-content h2,
    .section-header h2 {
        font-size: 32px;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .stat-box h3 {
        font-size: 42px;
    }
}
