/* About Page Styles */
.page-hero {
    position: relative;
    background-image: url("../img/about-hero.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 76px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-section {
    padding: 80px 0;
}

.about-text h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.about-img img {
    width: 100%;
}

.mission-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.team-section {
    padding: 80px 0;
}

.team-card {
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.team-info h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.team-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-dark);
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--gray);
}

.about-cta-section {
    background-color: var(--primary-lighter);
    padding: 80px 0;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

@media (max-width: 767.98px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-story-section {
        padding: 50px 0;
    }

    .about-text {
        margin-top: 30px;
        text-align: center;
    }

    .about-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mission-section,
    .team-section,
    .testimonials-section {
        padding: 50px 0;
    }
}

/* Text Animation Section */
.text-animation-section {
    background-color: #0a0a0a;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.animated-text-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.animated-text-wrapper {
    overflow: hidden;
}

.animated-text-line {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.animated-text {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 20px;
    padding: 10px;
    position: relative;
    color: rgba(255, 255, 255, 0.1);
    cursor: default;
    transition: color 0.3s ease;
    line-height: 1;
    white-space: nowrap;
    position: relative;
}

.animated-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    color: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.animated-text:hover::before {
    width: 100%;
}

.animated-tagline {
    margin-top: 40px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@media (max-width: 767.98px) {
    .text-animation-section {
        padding: 50px 0;
    }

    .animated-text {
        font-size: 2.5rem;
        margin: 0 10px;
    }

    .animated-text-line {
        flex-wrap: wrap;
        margin-bottom: 5px;
    }
}
/* End of Text Animation Section */

/* Animation styles for company story section */
.about-text h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    min-height: 1.5em;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 1.5s ease;
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    margin-left: 2px;
}

.about-text h2.animated::after {
    width: 100%;
}

.about-text .lead {
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.about-img img {
    transition: all 0.5s ease;
}

.about-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* company story animation end */

/* Creative Process Section with Advanced Animations */
.creative-process-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.process-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.process-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.process-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.process-timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 0%;
    background-color: var(--primary-lighter);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 150px;
    opacity: 0;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: white;
    border: 4px solid var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 2;
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.step-content {
    width: 40%;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(50px);
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) .step-content {
    transform: translateX(-50px);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step-svg {
    width: 100%;
    height: 100%;
}

.step-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.step-circle {
    transform-origin: center;
    transform: scale(0);
}

.step-dot {
    opacity: 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.step-description {
    color: var(--gray);
    line-height: 1.6;
}

.step-image {
    width: 40%;
    height: 300px;
    position: relative;
    z-index: 2;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(10deg);
}

.process-step:nth-child(even) .image-container:hover {
    transform: perspective(1000px) rotateY(-10deg);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.process-cta {
    margin-top: 100px;
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button {
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 991.98px) {
    .process-step {
        flex-direction: column !important;
        margin-bottom: 100px;
    }

    .step-content,
    .step-image {
        width: 100%;
        transform: none !important;
    }

    .step-content {
        margin-bottom: 30px;
        margin-top: 50px;
    }

    .step-number {
        top: 0;
    }

    .process-line {
        left: 30px;
    }

    .step-number {
        left: 30px;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .creative-process-section {
        padding: 80px 0;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .step-content {
        padding: 25px;
    }

    .step-image {
        height: 250px;
    }
}

/* Monoframe Story Section - Minimalist Modern Style */
.monoframe-story-section {
    padding: 120px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

/* Story Image Styling */
.story-image-container {
    position: relative;
    margin-bottom: 40px;
}

.story-image-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.story-image-main img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 1.2s ease;
}

.story-image-container:hover .story-image-main img {
    transform: scale(1.05);
}

.story-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    height: 60%;
    background-color: var(--primary-lighter);
    z-index: 1;
}

/* Story Content Styling */
.story-content {
    padding-left: 40px;
}

.overline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.overline:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.story-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--dark);
}

.story-text {
    margin-bottom: 40px;
}

.story-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: #333;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Milestones Styling */
.story-milestones {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.milestone {
    display: flex;
    flex-direction: column;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.milestone-text {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .monoframe-story-section {
        padding: 80px 0;
    }

    .story-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .overline:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .story-milestones {
        justify-content: center;
    }

    .story-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .story-milestones {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .milestone {
        align-items: center;
    }
}
