/* Page Header Section */
.pg-header {
    background-image: url('https://www.dxn2u.com/founder/images/Slider-FOUNDER.jpg');
}

/* Founder Section */
.founder-section {
    padding: 5rem 0;
    background-color: white;
}

.founder-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.founder-content {
    display: flex;
    gap: 2rem;
}

.founder-content .text-content {
    flex: 2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.founder-content .text-content p, .founder-content .text-content ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-content .image-content {
    flex: 1;
}

.founder-content .image-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.founder-title h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: bold;
}

.achievements {
    margin-top: 2rem;
    /*height: 370px;
    overflow-y: scroll;*/
    box-shadow: inset 0px 0px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

/*.achievements::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 140px;
    background: #ccc;
    top: 0.75rem;
    right: 0.15rem;
    border-radius: 8px;
}

.achievements:hover::before {
    opacity: 0;
}*/

.achievement {
    margin-bottom: 1.5rem;
}

.achievement h4 {
    color: #FF4B2B;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.achievement ul {
    padding-left: 2rem;
    border-left: 3px solid #FF4B2B;
    margin-bottom: 0.5rem !important;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {
    .founder-container {
        padding: 0 3rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
    .founder-content {
        flex-direction: column-reverse;
    }

    .founder-content .image-content {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    main {
        margin-top: 80px;
    }

    .founder-title h2 {
        font-size: 2rem;
    }

    .founder-container {
        padding: 0 2rem;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
    .founder-container {
        padding: 0 1rem;
    }

    .founder-title h2 {
        font-size: 1.8rem;
    }

    .founder-title h3 {
        font-size: 1.4rem;
    }
}



