/* About Page Styles */

/* Banner Section */
.about-banner {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/logo/summit-banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 50px 20px;
}

    .about-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--ast-global-color-5) 100%);
        opacity: 0.7;
        z-index: 1;
    }

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.about-banner-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Content Section - Modern Flow Design */
.about-content-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 500px;
    padding: 80px 0;
}

.about-content-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

    .about-content-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .about-content-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .about-content-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .about-content-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .about-content-item:nth-child(5) {
        animation-delay: 0.5s;
    }

/* Icon Circle */
.about-content-icon-circle {
    position: absolute;
    left: -15px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(28, 65, 121, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-content-item:hover .about-content-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(28, 65, 121, 0.4);
}

.about-content-icon-circle i {
    color: #ffffff;
    font-size: 1.5rem;
}

.about-content-body {
    padding-left: 70px;
    position: relative;
}

/* Connecting Line */
.about-content-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(28, 65, 121, 0.3) 50%, rgba(28, 65, 121, 0.1) 100%);
    z-index: 1;
}

.about-content-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

    .about-content-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), transparent);
        transition: width 0.6s ease;
    }

.about-content-item:hover .about-content-title::after {
    width: 100%;
}


.about-content-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    max-width: 900px;
}

    .about-content-text p {
        margin-bottom: 1.3rem;
        text-align: justify;
        transition: transform 0.3s ease;
    }

.about-content-item:hover .about-content-text p {
    transform: translateX(5px);
}

.about-content-text p:last-child {
    margin-bottom: 0;
}

.about-content-text h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-content-text ul,
.about-content-text ol {
    margin-bottom: 1.3rem;
    padding-left: 2rem;
}

.about-content-text li {
    margin-bottom: 0.9rem;
    position: relative;
}

.about-content-text ul li::marker {
    color: var(--primary-color);
}

.about-content-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

    .about-content-text a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }

    .about-content-text a:hover::after {
        width: 100%;
    }

.about-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .about-content-text img:hover {
        transform: scale(1.02);
    }

.about-content-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
    position: relative;
}

    .about-content-text blockquote::before {
        content: '"';
        font-size: 3rem;
        color: var(--primary-color);
        opacity: 0.2;
        position: absolute;
        top: 10px;
        left: 10px;
        font-family: Georgia, serif;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-banner {
        min-height: 200px;
        padding: 40px 20px;
    }

    .about-banner-title {
        font-size: 2rem;
    }

    .about-content-section {
        padding: 50px 0;
    }

    .about-content-item {
        margin-bottom: 50px;
    }

    .about-content-icon-circle {
        width: 50px;
        height: 50px;
        left: 0;
    }

    .about-content-icon-circle i {
        font-size: 1.3rem;
    }

    .about-content-body {
        padding-left: 65px;
    }

    .about-content-item:not(:last-child)::after {
        left: 24px;
    }

    .about-content-title {
        font-size: 1.6rem;
    }

    .about-content-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-banner {
        min-height: 180px;
        padding: 30px 20px;
    }

    .about-banner-title {
        font-size: 1.75rem;
    }

    .about-content-section {
        padding: 40px 0;
    }

    .about-content-item {
        margin-bottom: 40px;
    }

    .about-content-icon-circle {
        width: 45px;
        height: 45px;
    }

    .about-content-icon-circle i {
        font-size: 1.1rem;
    }

    .about-content-body {
        padding-left: 55px;
    }

    .about-content-item:not(:last-child)::after {
        left: 21px;
    }

    .about-content-title {
        font-size: 1.4rem;
    }

    .about-content-text {
        font-size: 0.95rem;
        text-align: left;
    }
}
