﻿/* ----------------------- */
/* Default Sneat-style CSS */
/* ----------------------- */

/* Page Background */
.about-page {
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    font-family: "Inter", sans-serif;
}

/* Hero Section */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .page-header h2 {
        font-size: 2.5rem;
        color: #0d6efd;
        margin-bottom: 1rem;
    }

/* Diamond divider */
.diamond-divider {
    position: relative;
    height: 4px;
    width: 100px;
    margin: 2rem auto;
}

.diamond {
    width: 15px;
    height: 15px;
    background: #0d6efd;
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
    top: -5px;
}

/* Card styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

/* Feature cards */
.feature-card {
    border: 2px solid rgba(13, 110, 253, 0.1);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: #0d6efd;
        background: rgba(13, 110, 253, 0.03);
    }

/* Slogan Image */
.slogan-img {
    max-width: 400px;
    border: 3px solid #0d6efd;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

/* Values section */
.value-item {
    transition: transform 0.3s ease;
}

    .value-item:hover {
        transform: translateY(-5px);
    }

.value-icon {
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

/* Commitment Card */
.commitment-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 2rem;
    background-color: #0d6efd;
    color: #fff;
}

    .commitment-card:before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(45deg);
    }

/* Accordion Button */
.accordion-btn {
    width: 100%;
    text-align: left;
    background: #f7f7f9;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-bottom: 0.5rem;
}

    .accordion-btn:hover {
        background: #e2e6ea;
    }

.accordion-content {
    display: none;
    padding: 0.5rem 1rem;
}

    .accordion-content.show {
        display: block;
    }

/* Responsive Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.col-12 {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 32%;
        max-width: 32%;
    }

    .col-md-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .col-lg-8 {
        flex: 0 0 66%;
        max-width: 66%;
    }

    .col-lg-10 {
        flex: 0 0 83%;
        max-width: 83%;
    }
}
