/* Reset and Base Styles - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Minimal Navigation */
.minimal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 20px;
    background: #E46D00 !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    font-size: 18px;
    font-weight: 800;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff !important;
    margin: 3px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    background: #E46D00 !important;
    padding: 30px 20px;
    transition: left 0.3s ease;
    box-shadow: none;
    border-top: none !important;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    display: block;
    padding: 15px 0;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-bottom: none !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link.active {
    color: #fff !important;
    font-weight: 700 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 20px 60px;
    background: #E46D00; /* Vivid Orange */
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-spacing {
    height: 80px;
}

.hero-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.8;
    color: #fff; /* White text on orange background */
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: #fff; /* White text on orange background */
    opacity: 0.9;
    font-weight: 400;
    margin-top: 30px;
    max-width: 300px;
}

.hero-cta {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 100;
}

.hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-cta.buzzing {
    animation: buzzingBee 4s infinite ease-in-out;
    position: fixed;
    z-index: 999;
}

@keyframes buzzingBee {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(30px, -20px) rotate(15deg); }
    20% { transform: translate(-15px, -40px) rotate(-10deg); }
    30% { transform: translate(25px, -15px) rotate(20deg); }
    40% { transform: translate(-30px, -30px) rotate(-15deg); }
    50% { transform: translate(20px, -50px) rotate(25deg); }
    60% { transform: translate(-25px, -10px) rotate(-20deg); }
    70% { transform: translate(35px, -35px) rotate(30deg); }
    80% { transform: translate(-20px, -45px) rotate(-25deg); }
    90% { transform: translate(15px, -25px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.scroll-indicator {
    text-align: center;
    margin-top: 40px;
    color: #fff; /* White text on orange background */
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.scroll-arrow {
    font-size: 16px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #F4E8DB; /* Cream */
    position: relative; /* Add this for absolute positioned pathway */
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 5;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    word-break: break-all;    /* will break the word anywhere */
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
 
}

.step-content p {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    word-wrap: break-word;
}

.step-visual {
    margin-top: 20px;
    font-size: 30px;
    color: #000;
}


/* Case Studies Section */
.case-studies {
    padding: 80px 20px;
    background: #F4E8DB; /* Cream */
}

.case-studies-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.case-study {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.case-study.animate {
    opacity: 1;
    transform: translateY(0);
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-placeholder {
    font-size: 40px;
    color: #ccc;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.case-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.case-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.metric-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #000;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #666;
    border-color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #F4E8DB; /* Cream */
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info {
    text-align: center;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #000; /* Keep text black */
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: #333; /* Slightly lighter black for subtitle */
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #000; /* Black text */
    font-size: 16px;
}

.contact-item i {
    color: #E46D00; /* Orange icons for accent */
    font-size: 18px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000; /* Black text on white form */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #000; /* Black text */
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E46D00; /* Orange focus border */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #E46D00; /* Orange button */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #CC5D00; /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 109, 0, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: inline;
}

/* Footer */
.footer {
    padding: 40px 20px 20px;
    background: #000;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 20px;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #666;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #555;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        display: flex;
        gap: 30px;
        padding: 0;
        box-shadow: none;
        background: transparent !important;
    }

    .nav-link {
        display: inline;
        padding: 0;
        border-bottom: none;
        font-size: 16px;
        color: #fff !important;
    }

    .menu-toggle {
        display: none;
    }

    .hero-main {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .hero-title {
        font-size: 120px;
    }

    .hero-subtitle {
        font-size: 22px;
        max-width: 400px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-cta {
        margin-top: 60px;
        align-self: flex-start;
    }

    .section-title {
        font-size: 64px;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        padding: 40px;
    }

    .process-step:nth-child(even) {
        flex-direction: row-reverse;
        text-align: right;
    }

    .step-content {
        flex: 1;
        margin: 0 30px;
    }

    .step-visual {
        margin-top: 0;
        font-size: 40px;
    }

    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info {
        text-align: left;
        margin-bottom: 0;
    }

    .contact-details {
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: row;
        gap: 0;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 140px;
    }
}

/* Timeline Section */
.timeline {
    padding: 80px 20px;
    background: #fff;
    overflow-x: auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.1;
}

.timeline-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

.timeline-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
    min-width: 800px; /* Ensures horizontal scroll on mobile */
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E46D00 0%, #F4E8DB 50%, #E46D00 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-badge {
    width: 60px;
    height: 60px;
    background: #E46D00;
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(228, 109, 0, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.timeline-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 109, 0, 0.4);
}

.timeline-content {
    text-align: center;
    min-width: 150px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #E46D00;
}

.timeline-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #E46D00;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-dates {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.timeline-company {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #fff;
    overflow: hidden;
}
.testimonials-track-container {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
   
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}



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

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #E46D00;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-text {
    color: #333;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: #E46D00;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E46D00, #F4E8DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Pause animation on hover */
.testimonials-track:hover {
    animation-play-state: paused;
}

/* Duplicate testimonials for seamless loop */
.testimonials-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
}

/* Page-Specific Styles */

/* Page Hero */
.page-hero {
    padding: 100px 20px 30px;
    background: #E46D00;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
}

.page-hero-text {
    flex: 1;
    text-align: center;
}

.page-hero-content .hero-cta {
    margin-top: 30px;
    display: inline-block;
    align-self: center;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Desktop layout for page hero */
@media (min-width: 768px) {
    .page-hero-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }
    
    .page-hero-text {
        text-align: center;
        flex: 1;
    }
    
    .page-hero-content .hero-cta {
        margin-top: 60px;
        align-self: flex-start;
        flex-shrink: 0;
    }
}

/* About Page Styles */
.our-story {
    padding: 80px 20px;
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #E46D00, #F4E8DB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
}

.mission-values {
    padding: 80px 20px;
    background: #F4E8DB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #E46D00;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #E46D00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team {
    padding: 80px 20px;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #E46D00;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #E46D00, #F4E8DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #fff;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.member-role {
    display: block;
    color: #E46D00;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #E46D00;
    color: #fff;
    transform: translateY(-2px);
}

.about-cta {
    padding: 80px 20px;
    background: #F4E8DB;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #E46D00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #CC5D00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 109, 0, 0.3);
}

/* Services Page Styles */
.services-overview {
    padding: 50px 20px;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #E46D00;
}

.service-card.featured {
    border-color: #E46D00;
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #E46D00;
    color: #fff;
    padding: 4px 18px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E46D00, #F4E8DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 0;
}

.service-features li {
    color: #666;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E46D00;
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 12px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #E46D00;
    text-align: center;
    padding: 15px;
    background: #F4E8DB;
    border-radius: 10px;
}

.services-process {
    padding: 80px 20px;
    background: #F4E8DB;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.technologies {
    padding: 80px 20px;
    background: #fff;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-item {
    background: #F4E8DB;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #E46D00;
    color: #fff;
    border-color: #E46D00;
    transform: translateY(-2px);
}

.services-cta {
    padding: 60px 20px;
    background: #F4E8DB;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.primary {
    background: #E46D00;
    color: #fff;
}

.cta-button.primary:hover {
    background: #CC5D00;
}

.cta-button.secondary {
    background: transparent;
    color: #E46D00;
    border: 2px solid #E46D00;
}

.cta-button.secondary:hover {
    background: #E46D00;
    color: #fff;
}

/* Services CTA Button Section */
.services-cta-button {
    padding: 30px 20px 15px;
    background: #E46D00;
}

.cta-button-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.services-cta-button .hero-cta {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-cta-button .hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.services-cta-button .hero-cta.buzzing {
    animation: buzzingBee 4s infinite ease-in-out;
    position: fixed;
    z-index: 999;
}

/* Services Message Section */
.services-message {
    padding: 50px 20px;
    background: #E46D00;
    text-align: center;
}

.services-message-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-message p {
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.services-message p:last-child {
    margin-bottom: 0;
}

.message-highlight {
    font-weight: 600;
    font-size: 22px;
}

/* Story Section */
.story-section {
    padding: 20px 20px;
    background: #E46D00;
    text-align: center;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-icon {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
}

.story-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.story-section p {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0.9;
}

.story-cta {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 1 !important;
}

/* About Page - Founder Sections */
.founder-intro {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

.founder-image {
    padding: 100px 20px 40px;
    background: #F4E8DB;
    text-align: center;
}

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

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(228, 109, 0, 0.3);
    border: 5px solid #fff;
}

.founder-biography {
    padding: 60px 20px;
    background: #fff;
}

.founder-biography .bio-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.founder-biography p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-section {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.contact-section .social-links {
    margin-bottom: 25px;
}

.contact-section .contact-btn {
    display: inline-block;
    background: #E46D00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-section .contact-btn:hover {
    background: #CC5D00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 109, 0, 0.3);
}

@media (min-width: 768px) {
    .founder-photo {
        width: 350px;
        height: 350px;
    }
    
    .intro-paragraph {
        font-size: 22px;
    }
    
    .founder-biography p {
        font-size: 18px;
    }
}

/* Walking Path Dots - Journey Effect */
.pathway-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.pathway-dash {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1; /* Default behind content */
}

.pathway-dash.visible {
    opacity: 0.8;
    transform: scale(1);
}

.pathway-dash.active {
    opacity: 1;
    transform: scale(1.6);
    background: #333;
}

/* Tighter curves for mobile with strategic 3D layering */
/* Under Listen section */
.pathway-dash:nth-child(1) { top: 5%; left: 25%; z-index: -1; } /* Behind Listen */
.pathway-dash:nth-child(2) { top: 8%; left: 30%; z-index: -1; } /* Behind Listen */
.pathway-dash:nth-child(3) { top: 12%; left: 40%; z-index: -1; } /* Behind Listen */
.pathway-dash:nth-child(4) { top: 15%; left: 55%; z-index: -1; } /* Behind Listen */
.pathway-dash:nth-child(5) { top: 18%; left: 65%; z-index: -1; } /* Behind Listen */
.pathway-dash:nth-child(6) { top: 22%; left: 70%; z-index: -1; } /* Behind Listen */

/* Above Plan section */
.pathway-dash:nth-child(7) { top: 26%; left: 65%; z-index: 10; } /* In front of Plan */
.pathway-dash:nth-child(8) { top: 30%; left: 55%; z-index: 10; } /* In front of Plan */
.pathway-dash:nth-child(9) { top: 34%; left: 45%; z-index: 10; } /* In front of Plan */
.pathway-dash:nth-child(10) { top: 37%; left: 35%; z-index: 10; } /* In front of Plan */
.pathway-dash:nth-child(11) { top: 40%; left: 30%; z-index: 10; } /* In front of Plan */
.pathway-dash:nth-child(12) { top: 44%; left: 35%; z-index: 10; } /* In front of Plan */

/* Under Build section */
.pathway-dash:nth-child(13) { top: 48%; left: 45%; z-index: -1; } /* Behind Build */
.pathway-dash:nth-child(14) { top: 52%; left: 55%; z-index: -1; } /* Behind Build */
.pathway-dash:nth-child(15) { top: 55%; left: 65%; z-index: -1; } /* Behind Build */
.pathway-dash:nth-child(16) { top: 58%; left: 70%; z-index: -1; } /* Behind Build */
.pathway-dash:nth-child(17) { top: 62%; left: 65%; z-index: -1; } /* Behind Build */
.pathway-dash:nth-child(18) { top: 66%; left: 55%; z-index: -1; } /* Behind Build */

/* Above Deliver section */
.pathway-dash:nth-child(19) { top: 70%; left: 65%; z-index: 10; } /* In front of Deliver */
.pathway-dash:nth-child(20) { top: 74%; left: 50%; z-index: 10; } /* In front of Deliver */
.pathway-dash:nth-child(21) { top: 78%; left: 35%; z-index: 10; } /* In front of Deliver */
.pathway-dash:nth-child(22) { top: 82%; left: 25%; z-index: 10; } /* In front of Deliver */
.pathway-dash:nth-child(23) { top: 86%; left: 40%; z-index: 10; } /* In front of Deliver */
.pathway-dash:nth-child(24) { top: 90%; left: 55%; z-index: 10; } /* In front of Deliver */
.pathway-dash:nth-child(25) { top: 94%; left: 70%; z-index: 10; } /* In front of Deliver */

/* Bridge to Corporate Experience section - Mobile */
.pathway-dash:nth-child(26) { top: 96%; left: 60%; z-index: 10; } /* Bridge end */
.pathway-dash:nth-child(27) { top: 98%; left: 45%; z-index: 10; } /* Bridge end */

/* Mobile responsive journey path */
@media (max-width: 768px) {
    .pathway-dash {
        width: 10px;
        height: 10px;
    }
    
    /* Tighter curves for mobile with strategic 3D layering */
    /* Under Listen section */
    .pathway-dash:nth-child(1) { top: 5%; left: 25%; z-index: -1; } /* Behind Listen */
    .pathway-dash:nth-child(2) { top: 8%; left: 30%; z-index: -1; } /* Behind Listen */
    .pathway-dash:nth-child(3) { top: 12%; left: 40%; z-index: -1; } /* Behind Listen */
    .pathway-dash:nth-child(4) { top: 15%; left: 55%; z-index: -1; } /* Behind Listen */
    .pathway-dash:nth-child(5) { top: 18%; left: 65%; z-index: -1; } /* Behind Listen */
    .pathway-dash:nth-child(6) { top: 22%; left: 70%; z-index: -1; } /* Behind Listen */

    /* Above Plan section */
    .pathway-dash:nth-child(7) { top: 26%; left: 65%; z-index: 10; } /* In front of Plan */
    .pathway-dash:nth-child(8) { top: 30%; left: 55%; z-index: 10; } /* In front of Plan */
    .pathway-dash:nth-child(9) { top: 34%; left: 45%; z-index: 10; } /* In front of Plan */
    .pathway-dash:nth-child(10) { top: 37%; left: 35%; z-index: 10; } /* In front of Plan */
    .pathway-dash:nth-child(11) { top: 40%; left: 30%; z-index: 10; } /* In front of Plan */
    .pathway-dash:nth-child(12) { top: 44%; left: 35%; z-index: 10; } /* In front of Plan */

    /* Under Build section */
    .pathway-dash:nth-child(13) { top: 48%; left: 45%; z-index: -1; } /* Behind Build */
    .pathway-dash:nth-child(14) { top: 52%; left: 55%; z-index: -1; } /* Behind Build */
    .pathway-dash:nth-child(15) { top: 55%; left: 65%; z-index: -1; } /* Behind Build */
    .pathway-dash:nth-child(16) { top: 58%; left: 70%; z-index: -1; } /* Behind Build */
    .pathway-dash:nth-child(17) { top: 62%; left: 65%; z-index: -1; } /* Behind Build */
    .pathway-dash:nth-child(18) { top: 66%; left: 55%; z-index: -1; } /* Behind Build */

    /* Above Deliver section */
    .pathway-dash:nth-child(19) { top: 70%; left: 65%; z-index: 10; } /* In front of Deliver */
    .pathway-dash:nth-child(20) { top: 74%; left: 50%; z-index: 10; } /* In front of Deliver */
    .pathway-dash:nth-child(21) { top: 78%; left: 35%; z-index: 10; } /* In front of Deliver */
    .pathway-dash:nth-child(22) { top: 82%; left: 25%; z-index: 10; } /* In front of Deliver */
    .pathway-dash:nth-child(23) { top: 86%; left: 40%; z-index: 10; } /* In front of Deliver */
    .pathway-dash:nth-child(24) { top: 90%; left: 55%; z-index: 10; } /* In front of Deliver */
    .pathway-dash:nth-child(25) { top: 94%; left: 70%; z-index: 10; } /* In front of Deliver */
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    padding: 20px 15px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.logo-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: transparent;
}

.logo-container {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 15px;
}

.company-info {
    text-align: center;
}

.company-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.role-title {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 4px;
    line-height: 1.2;
}

.partnership-type {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Desktop Corporate Experience Layout */
@media (min-width: 769px) {
    .corporate-logos {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    
    .logo-item {
        padding: 15px 10px;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .experience-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.intro-text strong {
    font-weight: 600;
    font-size: 22px;
}

/* Corporate Experience Section */
.corporate-experience {
    padding: 80px 20px;
    background: #E46D00; /* Orange background */
}

.corporate-experience .section-title {
    color: #fff;
}

.corporate-experience .section-subtitle {
    color: #fff;
    opacity: 0.9;
}

.corporate-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: Horizontal Scrolling Experience */
@media (max-width: 768px) {
    .corporate-experience {
        padding: 60px 0; /* Reduce vertical padding for mobile */
    }
    
    .corporate-logos {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        margin: 40px 0;
        padding: 0 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
    }
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    .corporate-logos::-webkit-scrollbar {
        display: none;
    }
    
    .logo-item {
        flex: 0 0 160px; /* Fixed width for horizontal scroll */
        scroll-snap-align: center;
        padding: 15px 10px;
        opacity: 1;
        transform: translateY(0);
        min-width: 160px; /* Ensure minimum width */
    }
    
    .company-info h3 {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .role-title {
        font-size: 10px;
        line-height: 1.1;
    }
    
    .partnership-type {
        font-size: 11px;
    }
}

/* KNNX Logo */
.knnx-logo {
    background: #2c5f7a;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(44, 95, 122, 0.3);
}

.knnx-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.nx-accent {
    color: #7fb069;
}

/* Mainstreet Logo */
.mainstreet-logo {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 15px;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mainstreet-dots {
    margin-bottom: 8px;
}

.dot-row {
    display: flex;
    gap: 3px;
    margin-bottom: 3px;
}

.dot {
    width: 4px;
    height: 4px;
    background: #6b4e9d;
    border-radius: 50%;
}

.mainstreet-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-text {
    font-size: 14px;
    font-weight: 700;
    color: #6b4e9d;
    letter-spacing: 1px;
}

.sub-text {
    font-size: 10px;
    font-weight: 500;
    color: #6b4e9d;
    letter-spacing: 1.5px;
}

/* Sussex Logo */
.sussex-logo {
    background: #b91c3c;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(185, 28, 60, 0.3);
}

.sussex-text {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
}

/* McLean Watson Logo */
.mclean-logo {
    background: #8b4513;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    flex-direction: row;
    gap: 10px;
    padding: 15px;
}

.diamond-pattern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.diamond {
    width: 8px;
    height: 8px;
    background: #fff;
    transform: rotate(45deg);
}

.mclean-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-name {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.company-type {
    font-size: 8px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Caldwell Financial Logo */
.caldwell-logo {
    background: #2c5f7a;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(44, 95, 122, 0.3);
    flex-direction: column;
    padding: 15px;
}

.caldwell-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.caldwell-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.caldwell-type {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Get it Done Logo */
.getitdone-logo {
    background: linear-gradient(135deg, #F4E8DB, #fff);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 8px;
}

.getitdone-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.get-text {
    font-size: 10px;
    font-weight: 400;
    color: #8B4513;
    font-style: italic;
    line-height: 1;
}

.done-text {
    font-size: 12px;
    font-weight: 700;
    color: #E46D00;
    line-height: 1;
    margin-top: 1px;
}

/* Team Highlight Section */
.team-highlight {
    padding: 80px 20px;
    background: #fff;
}

.team-highlight-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bio-photo {
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #E46D00, #F4E8DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(228, 109, 0, 0.3);
    border: 5px solid #fff;
}

.bio-content {
    text-align: center;
}

.bio-header {
    margin-bottom: 30px;
}

.bio-name {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bio-title {
    display: block;
    font-size: 20px;
    color: #E46D00;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-description {
    margin-bottom: 40px;
}

.bio-description p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bio-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.contact-btn {
    display: inline-block;
    background: #E46D00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #CC5D00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 109, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #E46D00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(228, 109, 0, 0.3);
}

@media (min-width: 768px) {
    .team-highlight-content {
        grid-template-columns: 300px 1fr;
        gap: 60px;
        text-align: left;
    }
    
    .bio-content {
        text-align: left;
    }
    
    .bio-contact {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    .bio-description p {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Services Introduction Section */
section.services-intro {
    padding: 50px 20px 25px;
    background: #E46D00 !important;
}

.services-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 20px;
    color: #fff !important;
    line-height: 1.6;
    margin-bottom: 25px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Timeline Section */ 

#testimonialsTrack {
    animation: none !important;
    transform: translateX(0) !important;
  }