/* start jumbotron page */
    :root {
        --primary-gradient: linear-gradient(107.72deg, #6313B9 3.94%, #22032F 97.89%);
        --text-color-light: rgba(255,255,255,0.9);
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes scaleIn {
        0% {
            opacity: 0;
            transform: scale(0.95);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .jumbotron-text {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.3s forwards;
    }

    .jumbotron-text h1 {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.4s forwards;
    }

    .jumbotron-text p {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.5s forwards;
    }

    .content-jumbotron-image-container img,
    .jumbotron-mobile-image img {
        opacity: 0;
        animation:
            fadeInUp 0.8s ease-out 0.6s forwards,
            scaleIn 0.8s ease-out 0.6s forwards;
    }

    .content-jumbotron {
        position: relative;
        background-color: white;
        color: white;
        padding: 70px 0;
        margin-bottom: 30px;
        overflow: hidden;
        font-family: 'Titillium Web', sans-serif;
    }

    .content-jumbotron::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-gradient);
        transform: skew(0deg, -5deg);
        transform-origin: top left;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .content-jumbotron-asset {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        gap: 30px;
    }

    .jumbotron-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content-jumbotron h1 {
        color: white;
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .content-jumbotron p {
        color: var(--text-color-light);
        line-height: 1.6;
        max-width: 500px;
    }

    .content-jumbotron-image-container {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-jumbotron-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 400px;
    }

    @media (min-width: 1025px) {
        .jumbotron-mobile-image {
            display: none;
        }

        .content-jumbotron-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            top: 60px;
        }
    }

    /* Tablet and Mobile Layout */
    @media (max-width: 1024px) {
        .content-jumbotron-asset {
            flex-direction: column;
            text-align: center;
        }

        .jumbotron-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .content-jumbotron-image-container {
            display: none;
        }

        .jumbotron-mobile-image {
            width: 100%;
            margin: 20px 0;
            display: block;
        }

        .jumbotron-mobile-image img {
            max-width: 100%;
            height: auto;
        }

        .content-jumbotron h1 {
            font-size: 2rem;
        }

        .content-jumbotron p {
            text-align: center;
            width: 100%;
            max-width: 100%;
        }

        .content-jumbotron::before {
            transform: skew(0deg, 0deg);
        }
    }

    @media (min-width: 769px) and (max-width: 1200px) {
        .content-jumbotron-asset {
            max-width: 95%;
            padding: 0 15px;
        }

        .content-jumbotron-image {
            max-height: 350px;
        }
    }
/* end jumbotron page */

/* start background or about us section */
    .about-section {
        background-color: white;
        text-align: center;
        padding: 50px 20px;
    }

    .about-section {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .about-section.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .about-section h2 {
        color: #6C00F8;
        font-family: 'Titillium Web', sans-serif;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .about-section h3 {
        font-family: 'Titillium Web', sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 50px;
    }

    .about-section p {
        font-family: 'Titillium Web', sans-serif;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
        color: #333;
    }

    .about-section img {
        max-width: 100%;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .btn-show-more {
        background-color: #6C00F8;
        color: white;
        border-radius: 25px;
        padding: 13px 30px;
        font-family: 'Titillium Web', sans-serif;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        width: fit-content;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
                    0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .btn-show-more:hover {
        background-color: white;
        color: #6C00F8;
        border: 1px solid #6C00F8;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 30px 10px;
        }

        .about-section h2 {
            font-size: 14px;
        }

        .about-section h3 {
            font-size: 30px;
        }

        .about-section p {
            font-size: 14px;
            line-height: 1.6;
        }
    }
/* end background or about us section */

/* start mission section */
    .mission-section {
        background-image: url('../img/home/mission_asset.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 80px 0;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .mission-section {
        padding: 80px 0;
        background-color: #f4f4f4;
    }

    .mission-subtitle {
        font-family: 'Titillium Web', sans-serif;
        text-align: center;
        color: white;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .mission-title {
        font-family: 'Titillium Web', sans-serif;
        text-align: center;
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 50px;
    }

    .mission-card-container {
        perspective: 1000px;
        margin-bottom: 30px;
        height: 300px;
        position: relative;
    }

    .mission-card {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.8s;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .mission-card-container:hover .mission-card {
        transform: rotateY(180deg);
    }

    .mission-card-front,
    .mission-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 15px;
        padding: 20px;
        background-color: white;
    }


    .mission-card-front {
        z-index: 2;
    }

    .mission-card-back {
        transform: rotateY(180deg);
        background-color: #6C00F8;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mission-card-icon {
        margin-bottom: 20px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mission-card-icon img {
        max-width: 80px;
        max-height: 80px;
        object-fit: contain;
    }

    .mission-card-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }

    .mission-card-description {
        color: #666;
        font-size: 14px;
    }

    .mission-card-description {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mission-card-back-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-button {
        display: inline-block;
        background-color: white;
        color: #6C00F8;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        margin-top: 15px;
        transition: all 0.3s ease;
    }

    .contact-button:hover {
        background-color: #f0f0f0;
        transform: scale(1.05);
    }

    @media (max-width: 991px) {
        .mission-card-title {
            font-size: 17px;
            margin-bottom: 15px;
            color: #333;
        }

        .mission-card-description {
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }
    }

    @media (max-width: 768px) {
        .mission-card-container {
            height: 300px;
        }

        .mission-card {
            height: 350px;
        }

        .mission-section .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .mission-section .col-md-3 {
            flex: 0 0 calc(50% - 15px);
            max-width: calc(50% - 15px);
            margin-bottom: 30px;
        }

        .mission-title {
            font-size: 30px;
        }
    }

    @media (max-width: 576px) {
        .mission-card-container {
            height: 300px;
            margin-bottom: 50px;
        }

        .mission-section .col-md-3 {
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }
    }
/* end mission section */

/* start content-2 */
    .content-2 {
        font-family: 'Titillium Web', sans-serif;
        text-align: center;
    }

    .content-title-1 {
        font-size: 1.3rem;
        color: #6C00F8;
        font-weight: 700;
        margin: 20px 0;
    }

    .content-title-2 {
        font-weight: 700;
        font-size: 2.5rem;
        color: black;
        margin-bottom: 30px;
    }

    .content-image img {
        max-width: 100%;
        height: auto;
    }

    @media (max-width: 767px) {
        .content-title-2 {
            font-size: 2rem;
        }

        .content-title-1 {
            font-size: 1.1rem;
        }

        .content-image img {
            max-width: 250px;
        }
    }
/* end content-2 */
