/* ============ ANIMATION KEYFRAMES ============ */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rainbow {
    0% { border-color: var(--accent-pink); }
    25% { border-color: var(--accent-blue); }
    50% { border-color: var(--accent-green); }
    75% { border-color: var(--accent-gold); }
    100% { border-color: var(--accent-pink); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}


/* ============ ANTON SC BOLD FONT OVERRIDE ============ */
.inyourface-hero-title,
.inyourface-hero-title span,
.inyourface-hero-main-tagline,
.inyourface-rating-text,
.inyourface-section-title,
.inyourface-mission-title,
.inyourface-best-text,
.inyourface-photo-text,
.inyourface-booth-text,
.inyourface-ever-text,
.inyourface-about-us-title,
.inyourface-about-us-owners,
.inyourface-booth-title,
.inyourface-values-title-glitch,
.inyourface-values-card-keyword,
.inyourface-awards-title,
.inyourface-why-hire-us-testimonials-title,
.inyourface-rating-text-large,
.inyourface-why-hire-us-testimonial-name
{
    font-family: "Anton SC", "Play", sans-serif !important;
}


/* ============ HERO SECTION ============ */
.inyourface-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
}

.inyourface-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    filter: brightness(0.6) contrast(0.8);
}

.inyourface-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    mix-blend-mode: overlay;
    z-index: 2;
}

.inyourface-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    padding: 0 20px;
}

.inyourface-hero-logo-container {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.inyourface-hero-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: contain;
    animation: pulse 5s infinite ease-in-out;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2),
                0 0 60px rgba(255, 59, 63, 0.3),
                0 0 90px rgba(0, 204, 255, 0.2);
}

.inyourface-hero-rainbow-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -5px;
    bottom: 0px;
    border: 3px solid var(--accent-pink);
    border-radius: 50%;
    animation: rainbow 10s infinite linear;
    z-index: -1;
}

.inyourface-fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.inyourface-hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.inyourface-hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.inyourface-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.inyourface-hero-main-tagline {
    font-size: 2rem;
    font-weight: 900;
    color: #ff0066;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards, pulse 2s infinite alternate 1s;
}

.inyourface-hero-contact {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.inyourface-hero-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.inyourface-hero-contact::before {
    content: "✆ ";
    margin-right: 8px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.inyourface-hero-phone {
    color: #fff;
}

.inyourface-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.inyourface-hero-button {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inyourface-hero-button-primary {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}

.inyourface-hero-button-primary:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.4);
}

.inyourface-hero-button-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.inyourface-hero-button-secondary:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.inyourface-hero-button i {
    margin-right: 10px;
}

.inyourface-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    font-size: 1.5rem;
    animation: float 2s infinite ease-in-out;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards, float 2s infinite ease-in-out 2s;
}

.inyourface-hero-rating-badge {
    position: absolute;
    bottom: 100px;
    right: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.inyourface-rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
    justify-content: center;
}

.inyourface-rating-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: sparkle 2s infinite alternate;
}

.inyourface-rating-text {
    color: #fff;
}

/* ============ RESPONSIVE STYLES ============ */
@media screen and (max-width: 1200px) {
    .inyourface-hero-title {
        font-size: 3.5rem;
    }

    .inyourface-hero-logo {
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width: 992px) {
    .inyourface-hero-title {
        font-size: 3rem;
    }

    .inyourface-hero-subtitle {
        font-size: 1.3rem;
    }

    .inyourface-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .inyourface-hero-button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .inyourface-hero-title {
        font-size: 2.5rem;
    }

    .inyourface-hero-subtitle {
        font-size: 1.1rem;
    }

    .inyourface-hero-logo {
        width: 200px;
        height: 200px;
    }

    .inyourface-hero-contact {
        font-size: 1.2rem;
    }

    .inyourface-hero-rating-badge {
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: 80px;
        padding: 10px 15px;
        animation: none;
    }

    .inyourface-hero-main-tagline {
        font-size: 1.5rem;
    }

    .inyourface-photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .inyourface-hero-title {
        font-size: 2rem;
    }

    .inyourface-hero-subtitle {
        font-size: 1rem;
    }

    .inyourface-hero-logo {
        width: 180px;
        height: 180px;
    }

    .inyourface-hero-contact {
        font-size: 1.1rem;
    }

    .inyourface-hero-social {
        gap: 15px;
    }

    .inyourface-hero-social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}



/* ============ SAMPLE PHOTOS GRID SECTION ============ */
.inyourface-sample-photos-section {
    padding-top: 100px;
    padding-bottom: 230px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 3px solid #ccc;
    position: relative;
    overflow: hidden;
}

.inyourface-section-lines {
    position: absolute;

}

.inyourface-photo-item img {
    object-fit: contain;

}
.inyourface-photo-item::before {
    content: none;
}

.inyourface-mission-section {
    position: relative;
    z-index: 1;
    margin-top: -100px;
    padding-top: 200px;
}

.inyourface-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, transparent 0%, rgba(255, 0, 102, 0.7) 50%, transparent 100%);
}



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

.inyourface-section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inyourface-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .inyourface-section-title {
        font-size: 2rem;
    }

}


@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}





/* ============ MISSION SECTION STYLES ============ */
.inyourface-mission-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.inyourface-saturn-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.inyourface-saturn {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: saturnFloat 15s infinite linear;
}

.saturn-1 {
    top: 10%;
    left: -5%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.saturn-2 {
    top: 70%;
    left: -5%;
    animation-duration: 25s;
    animation-delay: 5s;
}

.saturn-3 {
    top: 30%;
    left: -5%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.saturn-4 {
    top: 50%;
    left: -5%;
    animation-duration: 22s;
    animation-delay: 8s;
}

.saturn-5 {
    top: 80%;
    left: -5%;
    animation-duration: 16s;
    animation-delay: 3s;
}

@keyframes saturnFloat {
    0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) rotate(360deg);
        opacity: 0;
    }
}

.inyourface-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.inyourface-mission-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
}

.inyourface-mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
}

.inyourface-mission-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.inyourface-vision-statement h3 {
    font-size: 1.5rem;
    color: #ff0066;
    margin-bottom: 15px;
    font-weight: 700;
}

.inyourface-vision-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.inyourface-mission-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inyourface-mission-main-image {
    width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.inyourface-mission-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inyourface-best-booth-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 400;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: spin 3s cubic-bezier(1,-0.2,.12,1.26) infinite alternate;
}

.inyourface-best-text { font-size: 1.2rem; line-height: 1; }
.inyourface-photo-text { font-size: 1rem; line-height: 1; }
.inyourface-booth-text { font-size: 1rem; line-height: 1; }
.inyourface-ever-text { font-size: 1.2rem; line-height: 1; }

.inyourface-featured-review {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.inyourface-review-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.inyourface-review-stars i {
    color: #FFD700;
    font-size: 1.5rem;
}

.inyourface-review-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    border-left: 4px solid #ff0066;
    padding-left: 20px;
    margin: 0;
}

.inyourface-review-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
}

.inyourface-review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ 360° BOOTH OPTIONS SECTION ============ */
.inyourface-booth-options-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.inyourface-booth-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.inyourface-booth-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inyourface-booth-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.inyourface-booth-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.inyourface-booth-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 0, 102, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.inyourface-booth-prev {
    left: 0;
}

.inyourface-booth-next {
    right: 0;
}

.inyourface-booth-nav:hover {
    background: rgba(255, 0, 102, 0.2);
    border-color: rgba(255, 0, 102, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.inyourface-booth-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.inyourface-booth-track {
    display: flex;
    transition: transform 0.5s ease;
}

.inyourface-booth-card {
    flex: 0 0 calc(33.333%);
    margin-right: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 450px;
}
.inyourface-booth-card:last-child {
    margin-right: 0;
}

.inyourface-booth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 102, 0.2);
    border-color: rgba(255, 0, 102, 0.3);
}

.inyourface-booth-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.inyourface-booth-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.inyourface-booth-card:hover .inyourface-booth-image img {
    transform: scale(1.05);
}

.inyourface-booth-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.inyourface-booth-content {
    padding: 25px;
}

.inyourface-booth-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inyourface-booth-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.inyourface-booth-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inyourface-booth-feature {
    background: rgba(255, 0, 102, 0.1);
    border: 1px solid rgba(255, 0, 102, 0.3);
    color: #ff0066;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.inyourface-booth-includes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inyourface-booth-includes-title {
    color: #00ccff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.inyourface-booth-includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.inyourface-booth-includes-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 3px;
    position: relative;
    padding-left: 12px;
}

.inyourface-booth-includes-list li::before {
    content: "✓";
    color: #00ccff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.inyourface-booth-travel-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-style: italic;
    margin: 0;
}

.inyourface-booth-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.inyourface-booth-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.inyourface-booth-dot.active {
    background: #ff0066;
    transform: scale(1.3);
}

.inyourface-booth-dot:hover {
    background: rgba(255, 0, 102, 0.6);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .inyourface-booth-card {
        flex: 0 0 calc(50%);
    }

    .inyourface-booth-carousel-container {
        padding: 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .inyourface-booth-card {
        flex: 0 0 calc(100%);
        min-height: 400px;
    }

    .inyourface-booth-carousel-container {
        padding: 0 40px;
    }

    .inyourface-booth-title {
        font-size: 3rem;
    }

    .inyourface-booth-image {
        height: 200px;
    }

    .inyourface-booth-content {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .inyourface-booth-title {
        font-size: 2.5rem;
    }

    .inyourface-booth-carousel-container {
        padding: 0 30px;
    }
}


/* ============ RESPONSIVE STYLES ============ */
@media screen and (max-width: 850px) {
    .inyourface-mission-content,
    .inyourface-featured-review {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }

    .inyourface-mission-main-image {
        width: 100%;
    }


    .inyourface-gallery-grid {
        grid-template-columns: 1fr;
    }
}

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




/* ============ ABOUT US SECTION STYLES ============ */
.inyourface-about-us-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

/* About Us CSS-based geometric elements */
.inyourface-about-us-viewfinder {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    border: 2px solid rgba(255, 0, 102, 0.3);
    border-radius: 20px;
    z-index: 1;
}

.inyourface-about-us-viewfinder::before,
.inyourface-about-us-viewfinder::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 204, 255, 0.5);
}

.inyourface-about-us-viewfinder::before {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 8px;
}

.inyourface-about-us-viewfinder::after {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 8px;
}

.inyourface-about-us-corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 204, 255, 0.5);
    z-index: 1;
}

.inyourface-about-us-corner-accent:nth-child(1) {
    top: 5%;
    right: 5%;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 8px;
}

.inyourface-about-us-corner-accent:nth-child(2) {
    bottom: 5%;
    left: 5%;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 8px;
}

.inyourface-about-us-corner-accent:nth-child(3) {
    top: 5%;
    right: 5%;
    border-left: none;
    border-bottom: none;
    border-bottom-left-radius: 8px;
}

.inyourface-about-us-focus-lines {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 30%;
    z-index: 1;
    animation: focusMove 4s ease-in-out infinite;
}

.inyourface-about-us-focus-lines:nth-child(4) {
    top: 70%;
    animation-delay: 2s;
}

@keyframes focusMove {
    0%, 100% { transform: translateX(-10px); opacity: 0.3; }
    50% { transform: translateX(10px); opacity: 0.7; }
}

.inyourface-about-us-focus-points {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 0, 102, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: focusPulse 3s ease-in-out infinite;
}

.inyourface-about-us-focus-points:nth-child(5) { top: 25%; left: 20%; }
.inyourface-about-us-focus-points:nth-child(6) { top: 25%; right: 20%; }
.inyourface-about-us-focus-points:nth-child(7) { bottom: 40%; left: 50%; transform: translateX(-50%); background: rgba(0, 204, 255, 0.4); }

@keyframes focusPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

.inyourface-about-us-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.inyourface-about-us-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.inyourface-about-us-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    border-radius: 2px;
}

.inyourface-about-us-owners {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.inyourface-about-us-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-style: italic;
}

.inyourface-about-us-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.inyourface-about-us-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.inyourface-about-us-photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.inyourface-about-us-photo-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 0, 102, 0.3);
}

.inyourface-about-us-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8) contrast(1.1);
}

.inyourface-about-us-photo-item:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.1);
}

.inyourface-about-us-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.2), rgba(0, 204, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inyourface-about-us-photo-item:hover .inyourface-about-us-photo-overlay {
    opacity: 1;
}

.inyourface-about-us-photo-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}



/* ============ REVOLUTIONARY VALUES SECTION STYLES ============ */
.inyourface-values-section {
    position: relative;
    width: 100%;
    height: max-content;
    padding: 120px 0;
    background-color: #000;
    overflow: hidden;
    z-index: 5;
}

/* Cinematic Parallax Background */
.inyourface-values-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.inyourface-values-parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    will-change: transform;
}

.inyourface-values-parallax-layer-1 {
    background-image: url('images/values-bg-stars.png');
    opacity: 0.5;
    z-index: -9;
}

.inyourface-values-parallax-layer-2 {
    background-image: url('images/values-bg-nebula.png');
    opacity: 0.3;
    z-index: -8;
}

.inyourface-values-parallax-layer-3 {
    background: radial-gradient(circle at center, transparent 0%, #000 70%);
    z-index: -7;
}

.inyourface-values-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Cinematic Header */
.inyourface-values-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.inyourface-values-title-reveal {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.inyourface-values-title-glitch {
    font-size: 4rem;
    font-weight: 900;
    color: #ff0066;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    display: inline-block;
}

.inyourface-values-title-glitch::before,
.inyourface-values-title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.inyourface-values-title-glitch::before {
    color: #a1a1a1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.inyourface-values-title-glitch::after {
    color: #8f8f8f;
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
}

.inyourface-values-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.6;
    position: relative;
}

.inyourface-values-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Innovate 3D Holographic Values Cards */
.inyourface-values-hologram-container {
    position: relative;
    perspective: 1500px;
    margin: 0 auto;
    max-width: 1100px;
}

.inyourface-custom-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inyourface-custom-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Add padding for better spacing with glow effects */
    padding: 20px 0;
}

.inyourface-title-gradient {
    background: linear-gradient(90deg, #ff0066, #00ccff, #ff0066);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;

    /* Enhanced glow and shadow effects */
    filter: drop-shadow(0 0 12px rgba(255, 0, 102, 0.6)) 
            drop-shadow(0 0 24px rgba(0, 204, 255, 0.4))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));

    /* Animated gradient background */
    animation: inyourface-gradient-shift 3s ease-in-out infinite;
}

.inyourface-title-gradient::before {
    content: "We're highly flexible & customizable!!";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff0066, #00ccff, #ff0066);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    filter: blur(12px);
    z-index: -1;
    animation: inyourface-title-pulse 2s infinite alternate,
               inyourface-gradient-shift 3s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes inyourface-title-pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes inyourface-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes inyourface-bg-pulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hover effect for extra interaction */
.inyourface-title-gradient:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 0, 102, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 204, 255, 0.6))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.inyourface-custom-title {
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(0, 204, 255, 0.1));
    background-clip: padding-box;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.2);
}

.inyourface-title-gradient {
    background: linear-gradient(90deg, #ff0066, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 0, 102, 0.4));
}

.inyourface-title-gradient::before {
    content: "We're highly flexible & customizable!!";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    filter: blur(8px);
    z-index: -1;
    animation: inyourface-title-pulse 2s infinite alternate;
}

.inyourface-title-underline {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
}

.inyourface-title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: inyourface-title-shimmer 2s infinite;
}

@keyframes inyourface-title-pulse {
    0% {
        filter: blur(8px);
        opacity: 0.5;
    }
    100% {
        filter: blur(12px);
        opacity: 0.7;
    }
}

@keyframes inyourface-title-shimmer {
    100% {
        left: 100%;
    }
}

.inyourface-values-hologram-stage {
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
    height: 700px;
}

.inyourface-values-hologram-stage.mode-3d {
    perspective: 2000px;
    transform-style: preserve-3d;
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-hologram-card {
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 0, 102, 0.2);
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-hologram-card:hover {
    transform: translateZ(150px) scale(1.08) rotateY(0deg) !important;
    box-shadow: 0 25px 50px rgba(255, 0, 102, 0.4);
    z-index: 10;
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-card-content {
    transition: all 0.6s ease;
    transform: translateZ(0);
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-hologram-card:hover .inyourface-values-card-content {
    transform: translateZ(30px);
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-card-keyword {
    transition: all 0.5s ease;
    transform: translateZ(0);
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-hologram-card:hover .inyourface-values-card-keyword {
    transform: translateZ(50px) scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.8);
}

.inyourface-values-hologram-stage.mode-3d .inyourface-values-hologram-effect {
    opacity: 0.8;
    animation: inyourface-values-hologram-float 3s ease-in-out infinite alternate;
}

@keyframes inyourface-values-hologram-float {
    0% {
        transform: translateZ(15px) translateY(-5px);
    }
    100% {
        transform: translateZ(25px) translateY(5px);
    }
}


.inyourface-values-hologram-stage.mode-flat .inyourface-values-hologram-card {
    transform: translateZ(0) !important;
    transition: all 0.5s ease;
}

.inyourface-values-hologram-stage.mode-flat .inyourface-values-hologram-card:hover {
    transform: translateZ(0) scale(1.05) !important;
}


.inyourface-values-hologram-stage.mode-matrix {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-hologram-card {
    transform: translateZ(0) !important;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-content {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 0, 0.5);
    box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.2);
    overflow: hidden;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                repeating-linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 2px, transparent 5px);
    opacity: 0.3;
    z-index: -1;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-number {
    color: rgba(0, 255, 0, 0.2);
    font-family: monospace;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-keyword {
    color: #0f0;
    background: none;
    -webkit-text-fill-color: #0f0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    font-family: monospace;
    letter-spacing: 2px;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-title {
    color: #0f0;
    font-family: monospace;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-divider {
    background: #0f0;
    box-shadow: 0 0 10px #0f0;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-card-text {
    color: rgba(0, 255, 0, 0.9);
    font-family: monospace;
    position: relative;
}

.inyourface-values-hologram-stage.mode-matrix .inyourface-values-hologram-active-corner {
    border-color: #0f0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    opacity: 1;
}

/* Matrix card glitch effect */
.inyourface-values-hologram-stage.mode-matrix .inyourface-values-hologram-card:hover .inyourface-values-card-keyword {
    animation: inyourface-matrix-glitch 0.8s infinite alternate;
}

@keyframes inyourface-matrix-glitch {
    0%, 5%, 10% {
        opacity: 1;
        transform: none;
        color: #0f0;
    }
    1% {
        opacity: 0.8;
        transform: translateX(5px);
        color: #0f8;
    }
    6% {
        opacity: 0.9;
        transform: translateX(-5px);
        color: #8f8;
    }
}

/* Typewriter effect on hover */
.inyourface-values-hologram-stage.mode-matrix .inyourface-values-hologram-card:hover .inyourface-values-card-text {
    width: 100%;
    overflow: hidden;
    border-right: 2px solid rgba(0, 255, 0, 0.75);
    animation: inyourface-matrix-typing 1s steps(40, end), 
               inyourface-matrix-blink 0.75s step-end infinite;
}

@keyframes inyourface-matrix-typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes inyourface-matrix-blink {
    from, to { border-color: transparent }
    50% { border-color: rgba(0, 255, 0, 0.75) }
}

/* Code scan lines */
.inyourface-values-hologram-stage.mode-matrix .inyourface-values-hologram-scanline {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        rgba(0, 255, 0, 0.05) 1px,
        rgba(0, 255, 0, 0.05) 2px
    );
    opacity: 1;
    animation: inyourface-matrix-scanline 8s linear infinite;
}

@keyframes inyourface-matrix-scanline {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100px;
    }
}



.inyourface-values-hologram-card {
    position: absolute;
    width: 48%;
    height: 300px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inyourface-values-hologram-card:nth-child(1) {
    top: 0;
    left: 0;
    transform: translateZ(50px);
}

.inyourface-values-hologram-card:nth-child(2) {
    top: 0;
    right: 0;
    transform: translateZ(50px);
}

.inyourface-values-hologram-card:nth-child(3) {
    bottom: 0;
    left: 0;
    transform: translateZ(50px);
}

.inyourface-values-hologram-card:nth-child(4) {
    bottom: 0;
    right: 0;
    transform: translateZ(50px);
}

.inyourface-values-hologram-card:hover {
    transform: translateZ(80px) scale(1.05);
    z-index: 10;
}

.inyourface-values-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
}

.inyourface-values-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.15), rgba(0, 204, 255, 0.15));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.inyourface-values-hologram-card:hover .inyourface-values-card-content::before {
    opacity: 1;
}

.inyourface-values-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.5s ease;
}

.inyourface-values-hologram-card:hover .inyourface-values-card-number {
    color: rgba(255, 255, 255, 0.06);
    transform: scale(1.1);
}

.inyourface-values-card-keyword {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff0066;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 5px;
    position: relative;
}

.inyourface-values-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff0066;
    margin: 0 0 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.inyourface-values-card-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0066, #00ccff);
    margin: 0 0 20px;
    position: relative;
    overflow: hidden;
}

.inyourface-values-card-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: inyourface-values-divider-shimmer 2s infinite;
    animation-play-state: paused;
}

.inyourface-values-hologram-card:hover .inyourface-values-card-divider::after {
    animation-play-state: running;
}

@keyframes inyourface-values-divider-shimmer {
    100% {
        left: 100%;
    }
}

.inyourface-values-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.inyourface-values-hologram-card:hover .inyourface-values-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.inyourface-values-hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(45deg, 
        rgba(255, 0, 102, 0) 0%, 
        rgba(255, 0, 102, 0.05) 25%, 
        rgba(0, 204, 255, 0.05) 50%, 
        rgba(255, 0, 102, 0.05) 75%, 
        rgba(255, 0, 102, 0) 100%
    );
    opacity: 0;
    transform: translateZ(10px);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.inyourface-values-hologram-card:hover .inyourface-values-hologram-effect {
    opacity: 1;
    animation: inyourface-values-hologram-rotate 2s linear infinite;
}

@keyframes inyourface-values-hologram-rotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.inyourface-values-hologram-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0) 5px,
        rgba(255, 255, 255, 0.02) 5px,
        rgba(255, 255, 255, 0.02) 10px
    );
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.inyourface-values-hologram-card:hover .inyourface-values-hologram-scanline {
    opacity: 1;
}

.inyourface-values-hologram-active-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: #ff0066;
    opacity: 0;
    transition: all 0.5s ease;
}

.inyourface-values-hologram-active-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: #ff0066;
    opacity: 0;
    transition: all 0.5s ease;
}

.inyourface-values-hologram-active-corner-tl {
    top: 10px;
    left: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.inyourface-values-hologram-active-corner-tr {
    top: 10px;
    right: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.inyourface-values-hologram-active-corner-bl {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.inyourface-values-hologram-active-corner-br {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.inyourface-values-hologram-card:hover .inyourface-values-hologram-active-corner {
    opacity: 1;
}

/* Interactive Hologram Projector */
.inyourface-values-hologram-projector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 0, 102, 0.3), rgba(0, 0, 0, 0.8));
    box-shadow: 0 0 50px rgba(255, 0, 102, 0.5);
    z-index: -1;
    opacity: 0.7;
}

.inyourface-values-hologram-projector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 102, 0.5);
    animation: inyourface-values-projector-pulse 2s infinite;
}

@keyframes inyourface-values-projector-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.inyourface-values-light-beams {
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 0, 102, 0.1),
        transparent,
        rgba(0, 204, 255, 0.1),
        transparent,
        rgba(255, 0, 102, 0.1),
        transparent,
        rgba(0, 204, 255, 0.1),
        transparent
    );
    opacity: 0.3;
    animation: inyourface-values-light-rotation 20s linear infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes inyourface-values-light-rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Interactive Scene Controls */
.inyourface-values-scene-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.inyourface-values-scene-control {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inyourface-values-scene-control:hover {
    background: rgba(255, 0, 102, 0.1);
    border-color: rgba(255, 0, 102, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

.inyourface-values-scene-control.active {
    background: rgba(255, 0, 102, 0.2);
    border-color: rgba(255, 0, 102, 0.4);
    color: #fff;
}

.inyourface-values-scene-control-icon {
    font-size: 1rem;
}

/* Starfield Animation for Parallax */
.inyourface-values-starfield {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -3;
    pointer-events: none;
}

.inyourface-values-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.5;
}

.inyourface-values-star.large {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.7);
    animation: inyourface-values-star-pulse 3s infinite alternate;
}

@keyframes inyourface-values-star-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Dynamic Lines Effect */
.inyourface-values-dynamic-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.inyourface-values-hologram-container:hover .inyourface-values-dynamic-lines {
    opacity: 1;
}

.inyourface-values-dynamic-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.3), transparent);
    animation: inyourface-values-line-flow 5s linear infinite;
}

@keyframes inyourface-values-line-flow {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(1000%);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .inyourface-features-3d-stage {
        height: 500px;
    }

    .inyourface-features-card {
        width: 280px;
        height: 420px;
        margin: -210px 0 0 -140px;
    }

    .inyourface-values-hologram-card {
        width: 48%;
        height: 280px;
    }
}

@media screen and (max-width: 992px) {
    .inyourface-features-title {
        font-size: 3rem;
    }

    .inyourface-features-3d-stage {
        height: 400px;
    }

    .inyourface-features-card {
        width: 240px;
        height: 360px;
        margin: -180px 0 0 -120px;
    }

    .inyourface-values-title-glitch {
        font-size: 3.5rem;
    }

    .inyourface-values-hologram-stage {
        height: 600px;
    }

}

@media screen and (max-width: 768px) {
    .inyourface-features-section,
    .inyourface-values-section {
        padding: 100px 0;
    }

    .inyourface-features-title {
        font-size: 2.5rem;
    }

    .inyourface-features-subtitle,
    .inyourface-values-subtitle {
        font-size: 1rem;
    }

    /* Convert 3D carousel to vertical scroll for mobile */
    .inyourface-features-3d-stage {
        height: auto;
        perspective: none;
    }

    .inyourface-features-3d-carousel {
        position: relative;
        transform: none !important;
        animation: none !important;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .inyourface-features-card {
        position: relative;
        width: 100%;
        height: 400px;
        top: auto;
        left: auto;
        margin: 0;
    }

    .inyourface-features-carousel-controls {
        position: relative;
        bottom: auto;
        margin-top: 30px;
    }

    .inyourface-values-title-glitch {
        font-size: 2.8rem;
    }

    .inyourface-values-hologram-stage {
        height: auto;
        transform-style: flat;
    }

    .inyourface-values-hologram-card {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 30px;
        transform: none !important;
    }

    .inyourface-values-hologram-card:hover {
        transform: none !important;
    }

    .inyourface-values-hologram-projector,
    .inyourface-values-light-beams {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .inyourface-features-section,
    .inyourface-values-section {
        padding: 80px 0;
    }

    .inyourface-features-title {
        font-size: 2rem;
    }

    .inyourface-features-card {
        height: 450px;
    }

    .inyourface-values-title-glitch {
        font-size: 2.2rem;
    }

    .inyourface-values-card-keyword {
        font-size: 2rem;
    }

    .inyourface-values-card-title {
        font-size: 1.2rem;
    }
}

/* Ultra-Modern Extras */
.inyourface-glowing-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 0, 102, 0.3);
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.inyourface-glowing-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 102, 0.5);
}

.inyourface-grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/noise-texture.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9998;
}

/* Special Interactive Elements */
.inyourface-interactive-element {
    transition: all 0.3s ease;
    cursor: pointer;
}

.inyourface-interactive-element:hover {
    filter: brightness(1.2);
}

.inyourface-interactive-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    animation: inyourface-ripple-effect 0.8s linear;
    pointer-events: none;
}

@keyframes inyourface-ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Audio Visualization for Sound Interactivity */
.inyourface-audio-visualization {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    padding: 0 20px;
    z-index: 10;
}

.inyourface-audio-bar {
    width: 3px;
    height: 5px;
    background: linear-gradient(to top, #ff0066, #00ccff);
    border-radius: 3px;
    transition: height 0.1s ease;
}


/* ============ TESTIMONIALS SECTION STYLES ============ */
.inyourface-why-hire-us-testimonials-section {
    position: relative;
    padding-top: 80px;
    background-color: #000;
}

.inyourface-why-hire-us-testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.inyourface-why-hire-us-testimonials-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.inyourface-why-hire-us-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff0066, #9900ff);
    border-radius: 2px;
}

.inyourface-why-hire-us-testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.inyourface-testimonials-overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.inyourface-rating-stars-large {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.inyourface-rating-stars-large i {
    color: #FFD700;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: sparkle 3s cubic-bezier(0.19, 1, 0.22, 1) infinite alternate;
}

.inyourface-rating-stars-large i:nth-child(1) { animation-delay: 0s; }
.inyourface-rating-stars-large i:nth-child(2) { animation-delay: 0.3s; }
.inyourface-rating-stars-large i:nth-child(3) { animation-delay: 0.6s; }
.inyourface-rating-stars-large i:nth-child(4) { animation-delay: 0.9s; }
.inyourface-rating-stars-large i:nth-child(5) { animation-delay: 1.2s; }

.inyourface-rating-text-large {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inyourface-why-hire-us-testimonials-slider-container {
    position: relative;
    margin: 0 -20px;
    padding: 60px 20px;
    overflow: hidden;
}

.inyourface-why-hire-us-testimonials-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transform: translateX(390px);
    transition: transform 0.5s ease;
}

.inyourface-why-hire-us-testimonial-card {
    flex: 0 0 calc(33.33% - 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inyourface-why-hire-us-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 102, 0.2);
}

.inyourface-why-hire-us-testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255, 0, 102, 0.1);
}

.inyourface-why-hire-us-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    position: relative;
    flex-grow: 1;
}

.inyourface-why-hire-us-testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.inyourface-why-hire-us-testimonial-star {
    color: #ff0066;
    font-size: 1.2rem;
}

.inyourface-why-hire-us-testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.inyourface-why-hire-us-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(255, 0, 102, 0.3);
    position: relative;
}

.inyourface-why-hire-us-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inyourface-why-hire-us-testimonial-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.inyourface-why-hire-us-testimonial-info {
    display: flex;
    flex-direction: column;
}

.inyourface-why-hire-us-testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.inyourface-why-hire-us-testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.inyourface-why-hire-us-testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}

.inyourface-why-hire-us-testimonials-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.inyourface-why-hire-us-testimonials-arrow:hover {
    background: rgba(255, 0, 102, 0.1);
    border-color: rgba(255, 0, 102, 0.3);
    color: #ffffff;
}

.inyourface-why-hire-us-testimonials-dots {
    display: flex;
    gap: 10px;
}

.inyourface-why-hire-us-testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.inyourface-why-hire-us-testimonials-dot.active {
    background: #ff0066;
    transform: scale(1.2);
}

.inyourface-why-hire-us-testimonials-dot:hover {
    background: rgba(255, 0, 102, 0.6);
}

@media screen and (max-width: 992px) {
    .inyourface-why-hire-us-testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .inyourface-why-hire-us-testimonials-slider {
        transform: translateX(0);
    }

    .inyourface-why-hire-us-testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }

    .inyourface-why-hire-us-testimonials-title {
        font-size: 2.4rem;
    }
}


/* Google Reviews Simple Button */
.inyourface-google-reviews-simple-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff0066, #c52533);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.inyourface-google-reviews-simple-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 59, 63, 0.6);
    color: white;
    text-decoration: none;
}

.inyourface-google-reviews-simple-button i:first-child {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.inyourface-google-reviews-simple-button i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.inyourface-google-reviews-simple-button:hover i:last-child {
    transform: translateX(5px);
}

.inyourface-google-reviews-simple-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.inyourface-google-reviews-simple-button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .inyourface-google-reviews-simple-button {
        padding: 12px 25px;
        font-size: 1rem;
        gap: 12px;
    }
}


/* ============ SIMPLE AWARDS SECTION ============ */


.inyourface-awards-footer {
    padding: 60px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    text-align: center;
}

.inyourface-awards-simple-title {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 700;
}

.inyourface-awards-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.inyourface-award-badge {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.inyourface-award-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}




/* ============ COMPANY LOGOS SECTION ============ */
.inyourface-company-logos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    overflow: hidden;
}

.inyourface-logos-slider {
    margin-top: 50px;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.inyourface-logos-track {
    display: flex;
    gap: 60px;
    animation: logoScroll 90s linear infinite;
    width: fit-content;
}

.inyourface-logo-item {
    flex-shrink: 0;
    width: 300px;
    height: 140px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.inyourface-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.9);
    filter: grayscale(0.2) brightness(1);

    transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.inyourface-logo-item img:not([src$="12.png"]):not([src$="16.png"]):not([src$="18.png"]):not([src$="35.png"]):not([src$="41.png"]):not([src$="42.png"]):not([src$="43.png"]):not([src$="49.png"]):not([src$="50.png"]) {
    background-color: #fff;
} 

.inyourface-logo-item img:hover {
    filter: grayscale(0) brightness(1.5);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.5);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.7%);
    }
}


@media screen and (max-width: 576px) {
    .inyourface-container {
        padding: 0 10px;
    }
    .inyourface-logos-track {
        gap: 20px;
    }
}


