/* Additional styles for the updated about.php page */

/* Vision and Mission Section */
.vision-mission {
    padding: 80px 0;
    background-color: #0D2233;
    color: white;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.vision-section, .mission-section {
    flex-basis: 48%;
    margin-bottom: 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vision-section:hover, .mission-section:hover {
    transform: translateY(-10px);
}

.vision-section h2, .mission-section h2 {
    font-family: 'Abel', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.vision-section h2:after, .mission-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #fff;
}

.vision-section p, .mission-section p {
    font-family: 'Akshar', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background-color: #222021;
    color: white;
}

.product-showcase h2 {
    text-align: center;
    font-family: 'Abel', sans-serif;
    font-size: 48px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.product-showcase h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0D2233;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-category {
    margin-bottom: 60px;
}

.showcase-category h3 {
    font-family: 'Abel', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.showcase-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.showcase-item {
    flex-basis: calc(33.333% - 20px);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 34, 51, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h4 {
    font-family: 'Abel', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.item-overlay p {
    font-family: 'Akshar', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.view-more {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 12px 0;
    background-color: #0D2233;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: 'Abel', sans-serif;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-more:hover {
    background-color: #164875;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .vision-section, .mission-section {
        flex-basis: 100%;
    }
    
    .showcase-item {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .showcase-item {
        flex-basis: 100%;
    }
}

/* Footer Updates */
.footer-social h3 {
    font-family: 'Abel', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #0D2233;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-copyright p {
    font-family: 'Akshar', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}