/* About Page - Preface Style */

body {
    background-color: #0c0c0c;
}

/* Section */
.pf-section {
    display: block;
    position: relative;
}

.pf-overflow-hidden {
    overflow: hidden;
}

/* Container */
.pf-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 8rem 20px 0px 20px;
    font-weight: 200;
}

@media screen and (max-width: 767px) {
    .pf-container {
        padding: 4rem 20px 0px 20px;
    }
}

/* Hero Text */
.pf-hero-text-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.pf-hero-text-container.pf-center {
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 1;
    /* padding-top: 120px; */
    }
    
    .pf-hero-section {
        min-height: 50vh;
        display: flex;
        align-items: center;
}

.pf-heading-display-1 {
    color: #ec472d;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 70px);
    font-weight: 600;
    line-height: 1.2;
}

.pf-text-marked-container {
    position: relative;
    display: inline-block;
}

.pf-circle-mark {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    pointer-events: none;
}

/* About Images - Horizontal Scroll */
.pf-about-images-container {
    width: 140vw;
    position: relative;
    margin-top: 60px;
    margin-left: -20vw;
}

.pf-grid-about-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.pf-grid-about-images.pf-first {
    z-index: 1;
}

.pf-grid-about-images.pf-second {
    z-index: 0;
    margin-top: -53px;
    padding: 0 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pf-about-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pf-about-image-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.pf-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0c0c0c;
    z-index: -1;
}

/* Image Marquee */
.pf-marquee-section {
    overflow: hidden;
    padding: 40px 0;
}

.pf-image-marquee {
    width: 100%;
    overflow: hidden;
}

.pf-image-marquee-track {
    display: flex;
    gap: 20px;
    animation: pf-marquee 30s linear infinite;
    width: max-content;
}

.pf-image-marquee-track img {
    height: 300px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes pf-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Text Center */
.pf-text-center {
    text-align: center;
}

.pf-text-center h2 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}

/* Grid 6 Col */
.pf-grid-6-col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.pf-content {
    position: relative;
}

/* Offices */
.pf-offices-container {
    margin-top: 6em;
    margin-bottom: 3em;
}

.pf-offices-container .pf-grid-6-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pf-office-first {
    margin-top: 40%;
}

.pf-image-anim-container {
    overflow: hidden;
}

.pf-image-anim-container img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.pf-image-anim-container:hover img {
    transform: scale(1.05);
}

.pf-address {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

/* Our Numbers Section */
.pf-sticky-col {
    grid-column: span 2;
}

.pf-sticky {
    position: sticky;
    top: 100px;
}

.pf-section-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.pf-numbers-grid {
    grid-column: span 4;
}

.pf-numbers-grid .pf-grid-6-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pf-our-numbers-container {
    padding: 20px 0;
}

.pf-our-number-item {
    color: #ffd400;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 500;
    line-height: 1;
    margin: 0 0 5px;
}

.pf-our-number-text {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.pf-horizontal-line {
    background-color: #313e4b;
    height: 1px;
    margin: 15px 0;
}

.pf-our-numbers-container p {
    color: #a2a2a2;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.pf-team-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3em;
}

.pf-team-collection-item:nth-child(2n) {
    margin-top: 20%;
}

.pf-team-item {
    color: #fff;
    width: 100%;
    padding-bottom: 20px;
}

.pf-team-image-holder {
    max-width: 100%;
    overflow: hidden;
}

.pf-team-image-holder img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.pf-team-image-holder:hover img {
    transform: scale(1.05);
}

.pf-team-name {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.pf-team-item p {
    color: #a2a2a2;
    font-size: 14px;
    margin: 0;
}

/* Fade In Animation */
.pf-fade-in {
    opacity: 1;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .pf-grid-6-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pf-sticky-col {
        grid-column: span 2;
    }
    
    .pf-numbers-grid {
        grid-column: span 2;
    }
    
    .pf-sticky {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    
    .pf-team-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pf-about-images-container {
        width: 200vw;
        margin-left: -50vw;
    }
}

@media screen and (max-width: 767px) {
    .pf-hero-text-container.pf-center {
        padding-top: 40px;
    }
    
    .pf-heading-display-1 {
        font-size: 36px;
    }
    
    .pf-grid-about-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pf-about-image-content img {
        height: 200px;
    }
    
    .pf-offices-container .pf-grid-6-col {
        grid-template-columns: 1fr;
    }
    
    .pf-office-first {
        margin-top: 0;
    }
    
    .pf-numbers-grid .pf-grid-6-col {
        grid-template-columns: 1fr;
    }
    
    .pf-team-collection-grid {
        grid-template-columns: 1fr;
    }
    
    .pf-team-collection-item:nth-child(2n) {
        margin-top: 0;
    }
}


/* Founders Section */
.pf-founders-section {
    padding: 0;
}

.pf-founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* min-height: 10vh; */
}

.pf-founder-col {
    padding: 20px 50px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.pf-founder-col:last-child {
    border-right: none;
}

.pf-founder-header {
    margin-bottom: 40px;
}

.pf-founder-name {
    font-size: 28px;
    color: #fa821d;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.pf-founder-role {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pf-founder-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pf-founder-content .pf-highlight {
    color: #ec472d;
    font-weight: 500;
}

.pf-founder-content strong {
    color: #fff;
}

.pf-founder-content em {
    color: #ed0099;
    font-style: italic;
}

/* Purpose Section */
.pf-purpose-section {
    padding: 2rem 1rem 1.2rem 1rem;
    /* text-align: center; */
}

.pf-purpose-text {
    font-size: clamp(32px, 3vw, 60px);
    color: #474747 !important;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Footer Section */
.pf-footer-section {
    padding: 30px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .pf-founders-grid {
        grid-template-columns: 1fr;
    }
    
    .pf-founder-col {
        padding: 40px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .pf-founder-col:last-child {
        border-bottom: none;
    }
}


.pf-footer-section .copyright {
    color: #fff;
}

/* Read More */
.pf-founder-content.pf-collapsed {
    max-height: 280px;
    overflow: hidden;
}

.pf-founder-content.pf-expanded {
    max-height: none;
}

.pf-read-more-wrap {
    margin-top: 30px;
}

.pf-read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #fa821d;
    text-decoration: none;
}

.pf-read-more-btn .button-icon {
    background: #fa821d;
    color: #0c0c0c;
}

.pf-read-more-btn.pf-expanded .button-icon i {
    transform: rotate(180deg);
}