/* About Section Styles - Original Website Migration */
#about_wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 100px auto
}

#about_wrap:after {
    content: "";
    display: block;
    clear: both
}

#about_wrap .con_left {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 400px;
    background: #f5f4f0;
}

#about_wrap .con_left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#about_wrap .con_right {
    position: absolute;
    top: 40px;
    left: 45%;
    width: auto;
    height: 450px;
    padding: 30px 50px 50px 50px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 10px 15px 10px rgba(0,0,0,0.05);
}

#about_wrap .con_right em {
    display: block;
    padding-top: 20px;
    color: #999;
    font-size: 0.85em;
    letter-spacing: 0.35em;
    font-style: normal;
}

#about_wrap .con_right h2 {
    color: #333;
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.5em;
    margin-top: 20px;
}

#about_wrap .con_right p {
    margin-top: 30px;
    padding-right: 15px;
    font-size: 1em;
    color: #777;
    line-height: 1.5em;
    word-break: keep-all;
}

.btn_view {
    overflow: hidden;
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: 180px;
    height: 50px;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    display: block;
}

.btn_view span {
    display: block;
    text-align: center;
    color: #000;
    line-height: 50px;
    font-size: 1em;
}

.btn_view:hover {
    background: #48683F;
    border: 1px solid #48683F;
}

.btn_view:hover span {
    color: #fff;
}

/* Animation Classes */
/* Smooth fadeIn animations with keyframes */
@keyframes fadeInLeftSmooth {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightSmooth {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    #about_wrap {
        height: 420px;
        padding: 60px 20px;
    }
    
    #about_wrap .con_left {
        width: 500px;
        height: 350px;
    }
    
    #about_wrap .con_left img {
        height: 350px;
    }
    
    #about_wrap .con_right {
        left: 42%;
        height: 400px;
        padding: 25px 40px 40px 40px;
    }
}

@media (max-width: 992px) {
    #about_wrap {
        position: static;
        height: auto;
        padding: 60px 20px;
    }
    
    #about_wrap .con_left {
        position: static;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
    
    #about_wrap .con_left img {
        height: 300px;
        border-radius: 8px;
    }
    
    #about_wrap .con_right {
        position: static;
        width: 100%;
        height: auto;
        padding: 30px;
        margin: 0;
        text-align: center;
    }
    
    .btn_view {
        position: static;
        margin: 30px auto 0;
        left: auto;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    #about_wrap {
        padding: 40px 15px;
    }
    
    #about_wrap .con_left {
        height: 250px;
    }
    
    #about_wrap .con_left img {
        height: 250px;
    }
    
    #about_wrap .con_right {
        padding: 25px 20px;
    }
    
    #about_wrap .con_right h2 {
        font-size: 1.5em;
        margin-top: 15px;
    }
    
    #about_wrap .con_right p {
        margin-top: 20px;
        font-size: 0.9em;
    }
    
    .btn_view {
        width: 150px;
        height: 45px;
        margin-top: 25px;
    }
    
    .btn_view span {
        line-height: 45px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    #about_wrap .con_right p br {
        display: none;
    }
    
    #about_wrap .con_right h2 {
        font-size: 1.3em;
    }
    
    .btn_view {
        width: 130px;
        height: 40px;
    }
    
    .btn_view span {
        line-height: 40px;
        font-size: 0.8em;
    }
}