

.director-section-wave {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10,10,12,0.95), rgba(26,5,11,0.98));
    overflow: hidden;
}

/* Wave Border Card */
.director-card-wave {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,107,0,0.02));
    backdrop-filter: blur(10px);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,107,0,0.1);
    transition: all 0.5s ease;
}

    .director-card-wave:hover {
        box-shadow: 0 30px 60px rgba(255,107,0,0.2), 0 0 0 2px rgba(255,107,0,0.2);
        transform: translateY(-5px);
    }

/* Wave Border SVG */
.wave-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wave-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawWave 2s ease forwards, waveGlow 3s ease-in-out infinite 2s;
    opacity: 0.6;
}

.director-card-wave:hover .wave-path {
    opacity: 1;
}

.top-wave {
    animation: drawWave 2s ease forwards, waveGlow 3s ease-in-out infinite 2s, waveMove 8s linear infinite 2s;
}

.bottom-wave {
    animation: drawWave 2s ease forwards, waveGlow 3s ease-in-out infinite 2s, waveMoveReverse 8s linear infinite 2s;
}

.left-wave {
    animation: drawWaveVertical 2s ease forwards, waveGlow 3s ease-in-out infinite 2s, waveMoveVertical 8s linear infinite 2s;
}

.right-wave {
    animation: drawWaveVertical 2s ease forwards, waveGlow 3s ease-in-out infinite 2s, waveMoveVerticalReverse 8s linear infinite 2s;
}

/* Image Styling */
.director-image-wave {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.director-img-wave {
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: all 0.5s ease;
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    padding: 3px;
    animation: imageFloat 6s ease-in-out infinite;
}

    .director-img-wave:hover {
        transform: scale(1.03);
        box-shadow: 0 30px 60px rgba(255,107,0,0.4);
    }

/* Experience Badge */
.experience-badge-wave {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255,107,0,0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 3;
}

    .experience-badge-wave i {
        font-size: 1.1rem;
        color: white;
        animation: starRotate 4s linear infinite;
    }

/* Content Styling */
.director-content-wave {
    padding: 10px 0 10px 20px;
    position: relative;
    z-index: 2;
}

/* Title Section */
.title-section-wave {
    margin-bottom: 25px;
    position: relative;
}

.subtitle-wave {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    animation: fadeInLeft 0.8s ease;
}

    .subtitle-wave::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 2px;
        background: var(--primary-orange);
        animation: linePulse 2s ease-in-out infinite;
    }

.director-title-wave {
    font-size: 2.2rem;
    font-weight: 700;
    color: white !important;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255,107,0,0.3);
    animation: fadeInLeft 0.8s ease 0.1s both;
}

/* Quote Styling */
.quote-wave {
    position: relative;
    margin-bottom: 20px;
    padding: 0 0 0 30px;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.quote-icon-wave {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    color: var(--primary-orange);
    opacity: 0.4;
    animation: quoteFloat 3s ease-in-out infinite;
}

.quote-text-wave {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Description */
.description-wave {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 30px;
    border-left: 2px solid rgba(255,107,0,0.3);
    animation: fadeInLeft 0.8s ease 0.3s both;
    transition: border-color 0.3s ease;
}

.director-card-wave:hover .description-wave {
    border-left-color: var(--primary-orange);
}

/* Name Section */
.name-section-wave {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
    animation: fadeInLeft 0.8s ease 0.4s both;
}

.director-name-wave {
    font-size: 1.6rem;
    font-weight: 600;
    color: white !important;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
}

.signature-line-wave {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red), transparent);
    max-width: 150px;
    animation: lineWidth 3s ease-in-out infinite;
}

/* Animations */
@keyframes drawWave {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawWaveVertical {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes waveGlow {
    0%, 100% {
        stroke-width: 1.5;
        opacity: 0.6;
    }

    50% {
        stroke-width: 2.5;
        opacity: 1;
    }
}

@keyframes waveMove {
    0% {
        d: path("M0,20 Q40,0 80,20 T160,20 T240,20 T320,20 T400,20 T480,20 T560,20 T640,20 T720,20 T800,20 T880,20 T960,20 T1040,20 T1120,20 T1200,20 T1280,20");
    }

    25% {
        d: path("M0,25 Q40,5 80,25 T160,25 T240,25 T320,25 T400,25 T480,25 T560,25 T640,25 T720,25 T800,25 T880,25 T960,25 T1040,25 T1120,25 T1200,25 T1280,25");
    }

    50% {
        d: path("M0,15 Q40,35 80,15 T160,15 T240,15 T320,15 T400,15 T480,15 T560,15 T640,15 T720,15 T800,15 T880,15 T960,15 T1040,15 T1120,15 T1200,15 T1280,15");
    }

    75% {
        d: path("M0,22 Q40,2 80,22 T160,22 T240,22 T320,22 T400,22 T480,22 T560,22 T640,22 T720,22 T800,22 T880,22 T960,22 T1040,22 T1120,22 T1200,22 T1280,22");
    }

    100% {
        d: path("M0,20 Q40,0 80,20 T160,20 T240,20 T320,20 T400,20 T480,20 T560,20 T640,20 T720,20 T800,20 T880,20 T960,20 T1040,20 T1120,20 T1200,20 T1280,20");
    }
}

@keyframes waveMoveReverse {
    0% {
        d: path("M0,180 Q40,200 80,180 T160,180 T240,180 T320,180 T400,180 T480,180 T560,180 T640,180 T720,180 T800,180 T880,180 T960,180 T1040,180 T1120,180 T1200,180 T1280,180");
    }

    25% {
        d: path("M0,175 Q40,195 80,175 T160,175 T240,175 T320,175 T400,175 T480,175 T560,175 T640,175 T720,175 T800,175 T880,175 T960,175 T1040,175 T1120,175 T1200,175 T1280,175");
    }

    50% {
        d: path("M0,185 Q40,165 80,185 T160,185 T240,185 T320,185 T400,185 T480,185 T560,185 T640,185 T720,185 T800,185 T880,185 T960,185 T1040,185 T1120,185 T1200,185 T1280,185");
    }

    75% {
        d: path("M0,178 Q40,198 80,178 T160,178 T240,178 T320,178 T400,178 T480,178 T560,178 T640,178 T720,178 T800,178 T880,178 T960,178 T1040,178 T1120,178 T1200,178 T1280,178");
    }

    100% {
        d: path("M0,180 Q40,200 80,180 T160,180 T240,180 T320,180 T400,180 T480,180 T560,180 T640,180 T720,180 T800,180 T880,180 T960,180 T1040,180 T1120,180 T1200,180 T1280,180");
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes linePulse {
    0%, 100% {
        width: 10px;
        opacity: 1;
    }

    50% {
        width: 20px;
        opacity: 0.7;
    }
}

@keyframes lineWidth {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }

    50% {
        width: 150px;
        opacity: 0.7;
    }
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}


@media (max-width: 767.98px) {
    /* Hero Section */
    .about-hero-split {
        padding: 60px 0;
    }

    .hero-split-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-split-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .solution-badge-large {
        padding: 12px 20px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 60px;
    }

        .solution-badge-large i {
            font-size: 1.5rem;
        }

    .solution-text .line1 {
        font-size: 0.95rem;
    }

    .solution-text .line2 {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Stats Cards - Stack Vertically on Mobile */
    .stat-card-large {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-graph {
        margin-top: 15px;
        width: 100%;
    }

    .graph-bars {
        justify-content: center;
    }

        .graph-bars .bar {
            min-width: 8px;
        }

    .line-graph {
        height: 50px;
    }

    .pie-chart {
        float: none;
        margin: 0 auto 10px;
    }

    .floating-percent {
        text-align: center;
        margin-top: 10px;
    }

    .percent-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    /* Hide wave borders on mobile for better performance */
    .wave-border {
        display: none;
    }

    /* Director Section Mobile */
    .director-section-wave {
        padding: 40px 0;
    }

    .director-card-wave {
        margin: 0 15px;
        border-radius: 30px;
    }

    .director-img-wave {
        max-width: 240px;
        border-radius: 25px;
    }

    .director-title-wave {
        font-size: 1.6rem;
    }

    .quote-text-wave {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .description-wave {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 12px;
    }

    .director-name-wave {
        font-size: 1.3rem;
    }

    .experience-badge-wave {
        padding: 8px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

        .experience-badge-wave i {
            font-size: 0.9rem;
        }
}
@media (max-width: 480px) {
    /* Hero Section */
    .hero-split-title {
        font-size: 1.6rem;
    }

    .hero-split-subtitle {
        font-size: 0.9rem;
    }

    .floating-badge .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .solution-badge-large {
        padding: 10px 16px;
        gap: 10px;
    }

    .solution-text .line1 {
        font-size: 0.85rem;
    }

    .solution-text .line2 {
        font-size: 0.65rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 6px;
    }

    /* Stats Cards */
    .stat-card-large {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .graph-bars .bar {
        min-width: 6px;
    }

    /* Director Section */
    .director-card-wave {
        margin: 0 10px;
        border-radius: 25px;
    }

    .director-img-wave {
        max-width: 200px;
        border-radius: 20px;
    }

    .director-title-wave {
        font-size: 1.4rem;
    }

    .subtitle-wave {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .quote-text-wave {
        font-size: 0.85rem;
    }

    .description-wave {
        font-size: 0.85rem;
        padding: 10px;
    }

    .director-name-wave {
        font-size: 1.2rem;
    }

    .experience-badge-wave {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .signature-line-wave {
        max-width: 80px;
    }
}

@media (max-width: 767.98px) and (orientation: landscape) {
    .about-hero-split {
        padding: 40px 0;
    }

    .hero-left-content,
    .hero-right-stats {
        margin-bottom: 30px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-card-large {
        padding: 15px;
    }

    .stat-graph {
        height: 40px;
    }

    .graph-bars {
        height: 40px;
    }

    .director-section-wave {
        padding: 30px 0;
    }

    .director-card-wave {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .director-image-wave {
        flex: 0 0 40%;
        margin-bottom: 0;
    }

    .director-content-wave {
        flex: 0 0 60%;
        text-align: left;
        padding: 20px;
    }

    .quote-wave {
        text-align: left;
        padding: 0 0 0 30px;
    }

    .quote-icon-wave {
        left: 0;
        transform: none;
        top: 0;
    }

    .name-section-wave {
        flex-direction: row;
        text-align: left;
    }

    .signature-line-wave {
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    .stats-particles {
        display: none;
    }

    .gradient-orb {
        opacity: 0.2;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 300px;
        height: 300px;
    }
}

/* Ensure text readability on all devices */
@media (max-width: 767.98px) {
    .hero-left-content,
    .director-content-wave {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-split-title,
    .director-title-wave {
        word-break: break-word;
    }
}

/* Smooth transitions for all interactive elements */
@media (max-width: 991.98px) {
    .stat-card-large,
    .director-card-wave,
    .btn-cta-primary,
    .btn-cta-secondary,
    .solution-badge-large {
        transition: all 0.3s ease;
    }

    /* Reduce animation intensity on mobile for better performance */
    .stat-card-large {
        animation: none;
    }

    .director-img-wave {
        animation: none;
    }

    .experience-badge-wave {
        animation: none;
    }

    .floating-badge {
        animation: none;
    }
}





/* =========================================
   SPLIT HERO WITH ANIMATED STATS
   ========================================= */

.about-hero-split {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background: #000000;
    margin-top: 68px;
}

/* Background Elements (reuse from previous) */
.abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatOrb 25s ease-in-out infinite;
}

.orb-1 {
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.orb-2 {
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: var(--primary-red);
    opacity: 0.25;
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: var(--primary-orange-red);
    opacity: 0.2;
    animation-delay: -10s;
}

/* Left Content Styles */
.hero-left-content {
    position: relative;
    z-index: 10;
    color: white;
    animation: slideInLeft 1.2s ease;
}

.hero-split-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white !important;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.hero-split-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* One Stop Solution - Left Side */
.one-stop-solution-left {
    margin-bottom: 40px;
    animation: floatIn 1s ease 0.3s both;
}

.solution-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(214,48,49,0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,107,0,0.3);
    padding: 20px 35px;
    border-radius: 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

    .solution-badge-large::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 3s infinite;
    }

    .solution-badge-large i {
        font-size: 2rem;
        color: var(--primary-orange);
        animation: rotate 10s linear infinite;
    }

.solution-text {
    display: flex;
    flex-direction: column;
}

    .solution-text .line1 {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
        letter-spacing: 1px;
    }

    .solution-text .line2 {
        font-size: 0.9rem;
        color: var(--primary-orange);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

/* Right Stats Section */
.hero-right-stats {
    position: relative;
    z-index: 10;
    padding: 30px;
    animation: slideInRight 1.2s ease;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card-large {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 30px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: floatCard 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.5s);
}

    .stat-card-large:nth-child(1) {
        animation-delay: 0s;
    }

    .stat-card-large:nth-child(2) {
        animation-delay: 0.5s;
    }

    .stat-card-large:nth-child(3) {
        animation-delay: 1s;
    }

    .stat-card-large:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--primary-orange);
        box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.stat-content {
    flex: 1;
}

.stat-number-wrapper {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Graph Styles */
.stat-graph {
    width: 100%;
    height: 60px;
    position: relative;
}

/* Bar Graph */
.graph-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
}

    .graph-bars .bar {
        flex: 1;
        background: linear-gradient(to top, var(--primary-orange), var(--primary-red));
        border-radius: 3px 3px 0 0;
        animation: barRise 1.5s ease-out forwards;
        transform-origin: bottom;
        opacity: 0.7;
        transition: height 0.3s ease;
    }

        .graph-bars .bar:hover {
            opacity: 1;
            transform: scaleY(1.05);
        }

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-red), transparent);
    animation: linePulse 2s ease-in-out infinite;
}

/* Line Graph */
.line-graph {
    width: 100%;
    height: 60px;
}

    .line-graph polyline {
        filter: drop-shadow(0 0 5px var(--primary-orange));
    }

/* Pie Chart */
.pie-chart {
    position: relative;
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 15px;
}

.pie-svg {
    width: 60px;
    height: 60px;
    transform: rotate(0deg);
}

.pie-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.floating-percent {
    overflow: hidden;
}

.percent-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    animation: floatBadge 3s ease-in-out infinite;
}

/* Stats Particles */
.stats-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

    .stats-particles .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--primary-orange);
        border-radius: 50%;
        opacity: 0.3;
        animation: particleFloat 10s linear infinite;
    }

        .stats-particles .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .stats-particles .particle:nth-child(2) {
            top: 50%;
            right: 20%;
            animation-delay: 2s;
        }

        .stats-particles .particle:nth-child(3) {
            bottom: 30%;
            left: 30%;
            animation-delay: 4s;
        }

        .stats-particles .particle:nth-child(4) {
            top: 70%;
            right: 40%;
            animation-delay: 6s;
        }

        .stats-particles .particle:nth-child(5) {
            bottom: 10%;
            left: 70%;
            animation-delay: 8s;
        }

/* CTA Buttons */
.hero-split-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: var(--tech-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 107, 0, 0.5);
}

    .btn-cta-primary:hover,
    .btn-cta-secondary:hover {
        transform: translateY(-3px) scale(1.05);
    }

.btn-cta-primary:hover {
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
}

.btn-cta-secondary:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes barRise {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(40px, 0) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translate(20px, 20px) rotate(270deg);
        opacity: 0.5;
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@media (max-width: 991.98px) {
    /* Hero Section */
    .about-hero-split {
        height: auto;
        min-height: auto;
        padding: 80px 0;
        margin-top: 88px;
    }

    .hero-split-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-split-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }

    .hero-left-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .floating-badge {
        display: flex;
        justify-content: center;
    }

    .one-stop-solution-left {
        display: flex;
        justify-content: center;
    }

    .solution-badge-large {
        padding: 15px 25px;
        gap: 15px;
    }

    .solution-text .line1 {
        font-size: 1.1rem;
    }

    .solution-text .line2 {
        font-size: 0.8rem;
    }

    .hero-split-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Stats Section */
    .hero-right-stats {
        padding: 20px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-card-large {
        padding: 20px;
        flex-direction: row;
        text-align: left;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-graph {
        height: 50px;
    }

    .graph-bars {
        height: 50px;
    }

    .pie-chart {
        width: 50px;
        height: 50px;
    }

    .pie-svg {
        width: 50px;
        height: 50px;
    }

    /* Director Section */
    .director-section-wave {
        padding: 50px 0;
    }

    .director-card-wave {
        margin: 0 20px;
    }

    .director-content-wave {
        padding: 30px 20px;
        text-align: center;
    }

    .director-title-wave {
        font-size: 1.8rem;
        text-align: center;
    }

    .subtitle-wave {
        text-align: center;
        padding-left: 0;
        display: block;
    }

        .subtitle-wave::before {
            display: none;
        }

    .quote-wave {
        padding: 20px 0 0;
        text-align: center;
    }

    .quote-icon-wave {
        left: 50%;
        transform: translateX(-50%);
        top: -5px;
        position: absolute;
    }

    .quote-text-wave {
        font-size: 1rem;
        padding-top: 20px;
    }

    .description-wave {
        text-align: justify;
        padding: 15px;
        margin: 15px 0;
        border-left: 2px solid rgba(255,107,0,0.3);
    }

    .name-section-wave {
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
        text-align: center;
    }

    .director-name-wave {
        font-size: 1.4rem;
    }

    .signature-line-wave {
        max-width: 100px;
        margin: 0 auto;
    }

    .director-image-wave {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .director-img-wave {
        max-width: 280px;
        margin: 0 auto;
    }

    .experience-badge-wave {
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        display: inline-flex;
        margin-top: -25px;
        margin-bottom: 15px;
        justify-content: center;
    }
}

