/* Modern About Page Styling */

.about_wrap {
    background: #ffffff;
}

/* Section Styling */
.about_box {
    padding: 100px 0;
    position: relative;
}

.about_box.about_sec {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about_box.history_sec {
    background: #ffffff;
}

.about_box.eco_sec {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about_box.mission_sec {
    background: #ffffff;
}

/* Title Styling */
.sub_title {
    margin-bottom: 60px;
    position: relative;
}

.sub_title .ft_h {
    font-size: 2.8rem;
    color: #1a1a1a;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.sub_title .ft_h:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00D1E9, #55c7fc);
    border-radius: 2px;
}

/* Main Content Styling */
.about_main {
    margin-bottom: 40px;
}

.about_main em.ft_h {
    font-size: 1.4rem;
    color: #00D1E9;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 0;
}

.about_txt span {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 600;
}

.about_txt b {
    color: #00D1E9;
    font-weight: 700;
}

.about_text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
}

/* History Timeline Styling */
.history_timeline {
    position: relative;
    padding: 0;
}

.history_timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00D1E9;
    transform: translateX(-50%);
}

.timeline_item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.timeline_item:nth-child(odd) {
    margin-left: auto;
    padding-left: 40px;
}

.timeline_item:nth-child(even) {
    padding-right: 40px;
}

.year {
    font-size: 1.5rem;
    color: #00D1E9;
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline_item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline_item p {
    color: #34495e;
    line-height: 1.6;
}

/* Eco Section Styling */
.eco_sec .sub_main {
    display: flex;
    flex-direction: column;
}

.eco_sec .tit {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.4;
}

.eco_sec .about_text {
    max-width: 800px;
    margin-bottom: 40px;
}

.eco_certificates {
    display: flex;
    justify-content: center;
    margin-top: 0;
    flex-wrap: wrap;
    gap: 40px;
}

.cert_item {
    flex: 0 0 auto;
    text-align: center;
    background: none;
    padding: 0;
}

.cert_item img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.cert_item:hover img {
    transform: scale(1.05);
}

.cert_item p {
    text-align: center;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mission Values Styling */
.mission_values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.value_item {
    background: #ffffff;
    padding: 30px;
    text-align: center;
}

.value_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value_item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value_item p {
    color: #34495e;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about_box {
        padding: 80px 0;
    }

    .sub_title .ft_h {
        font-size: 2rem;
        padding-bottom: 8px;
    }

    .about_txt span {
        font-size: 1.5rem;
    }

    .history_timeline:before {
        left: 20px;
    }

    .timeline_item {
        width: 100%;
        padding-left: 40px;
        padding-right: 20px;
    }

    .timeline_item:nth-child(odd),
    .timeline_item:nth-child(even) {
        margin-left: 0;
        padding-left: 40px;
        padding-right: 20px;
    }

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

    .eco_sec .tit {
        font-size: 1.5rem;
    }

    .eco_sec .about_text {
        margin-bottom: 30px;
    }

    .eco_certificates {
        gap: 30px;
    }

    .cert_item img {
        width: 120px;
    }
}

/* Animation Enhancements */
[data-aos] {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.about_main em.ft_b {
    font-size: 1.2rem;
    color: #00D1E9;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 0;
}

.about_main em.ft_b:before {
    display: none;
}

/* Page Title Section Styling */
.pg_title {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.pg_top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pg_text {
    flex: 1;
    max-width: 600px;
}

.bread {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.bread .home {
    width: 20px;
    height: 20px;
    background: url('../img/icon_home.png') no-repeat center;
    background-size: contain;
}

.bread i {
    width: 6px;
    height: 6px;
    background: #00D1E9;
    border-radius: 50%;
    margin: 0 12px;
}

.bread .now {
    color: #00D1E9;
    font-size: 1rem;
}

.pg_tit {
    font-size: 3.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.deco {
    font-size: 1.2rem;
    color: rgba(0, 209, 233, 0.1);
    font-weight: 700;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

.pg_bg {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 40px;
}

.img_box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for Page Title */
@media (max-width: 768px) {
    .pg_title {
        padding: 130px 0 30px;
    }

    .pg_top {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .pg_text {
        max-width: 100%;
    }

    .bread {
        margin-bottom: 1px;
    }

    .pg_tit {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .deco {
        display: block;
        right: 20px;
        font-size: 1rem;
        opacity: 0.5;
    }

    .pg_bg {
        height: 300px;
        margin-top: 25px;
    }
} 