/**
 * ============================================
 * TABLE OF CONTENTS
 * ============================================
 * 1. Full About Us Page Css
 * 2. Owl Carousel
 * ============================================
 */

/* 1. Full About Us Page Css
   ============================================ */
.about-header {
    background: linear-gradient(135deg, #1e6f3f 0%, #0a3622 100%);
    color: white;
    padding: 60px 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-header h1 {
    font-weight: 800;
    font-size: 2.8rem;
}

.about-header p.lead {
    font-weight: 300;
    font-size: 1.2rem;
}

.shadow-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

    .shadow-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.icon-lg {
    font-size: 2.5rem;
    color: #1e6f3f;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e6f3f;
    line-height: 1;
}

.badge-experience {
    background-color: #ffc107;
    color: #1e3a2f;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #1e6f3f;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-custom:hover {
        background-color: #0a4628;
        color: white;
        transform: scale(1.02);
    }

.quote-text {
    font-size: 1.1rem;
    border-right: 5px solid #1e6f3f;
    background-color: #f0f7f2;
    padding: 25px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .shadow-card {
        padding: 1.5rem;
    }
}
/* 2. Owl Carousel
   ============================================ */
.owl-carousel .item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.owl-carousel .item:hover {
    transform: translateY(-5px);
}

.slide-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.slide-content {
    padding: 20px;
    text-align: center;
}

    .slide-content h3 {
        color: #3498db;
        margin-top: 0;
    }

    .slide-content p {
        color: #7f8c8d;
        line-height: 1.6;
    }

.owl-dots {
    margin-top: 20px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-prev, .owl-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px !important;
    transition: background 0.3s ease;
}

    .owl-prev:hover, .owl-next:hover {
        background: rgba(41, 128, 185, 1) !important;
    }

.owl-prev {
    right: -45px;
}

.owl-next {
    left: -45px;
}
/* 3. Image Modal
   ============================================ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
