/* 
   Supreme Branding Styles 
   Systematic IT Solutions - 2026
*/

/* Glassmorphism FAQ & Sections */
.glass-accordion .accordion-items {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.glass-accordion .accordion-items.faq-active {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.glass-accordion .accordion-buttons {
    padding: 25px 30px;
    background: transparent !important;
    border: none;
    font-weight: 600;
    color: #1a1a1a;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.glass-accordion .accordion-body {
    padding: 0 30px 25px;
    color: #4d4d4d;
}

/* Atropos Card Styling */
.atropos-expertise-card {
    height: 100%;
}

.atropos-expertise-card .atropos-inner {
    border-radius: 24px;
    padding: 50px 40px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.atropos-expertise-card .atropos-inner:hover {
    border-color: #000;
}

.atropos-card-icon {
    font-size: 40px;
    margin-bottom: 25px;
    display: block;
    color: #000;
}

.atropos-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.atropos-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Liquid Tech Marquee */
.tech-marquee-wrapper {
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.tech-marquee-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 50px;
    text-align: center;
}

.tech-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.tech-icon-box:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.tech-icon-box img {
    max-height: 45px;
    object-fit: contain;
}

.tech-icon-text {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
}

/* GSAP Scroll Reveal Padding */
.supreme-section-ptb {
    padding: 140px 0;
}


/* Logo Hover Interaction */
.tp-header-logo a {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tp-header-logo a:hover {
    transform: scale(1.08);
}

/* Global Brand Color Overrides (Replacing with Logo Scheme) */
:root {
    --tp-theme-primary: #f99d4e; /* Vibrant Orange from Logo Icon */
    --tp-theme-secondary: #e93b6e; /* Vibrant Pink from Logo Icon */
    --tp-theme-accent: #f99d4e; 

    --tp-theme-green: var(--tp-theme-primary) !important;
    --tp-common-green-light: var(--tp-theme-primary) !important;
    --tp-common-green-regular: var(--tp-theme-primary) !important;
    --tp-common-green-1: var(--tp-theme-secondary) !important;
    --tp-common-yellow-green: var(--tp-theme-primary) !important;
    
    --tp-common-paste: var(--tp-theme-primary) !important; 
    --tp-common-red: var(--tp-theme-secondary) !important;
    --tp-common-red-2: var(--tp-theme-primary) !important; 
    --tp-common-red-3: var(--tp-theme-secondary) !important;
    --tp-common-yellow: var(--tp-theme-primary) !important;
}

/* --- Modern GSAP Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a !important; /* Deeper dark background */
    backdrop-filter: blur(20px);
}

.preloader-panels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.preloader-panels .panel {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: none;
    margin-right: -1px;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 145, 255, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    from { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

.logo-wrapper {
    margin-bottom: 35px;
    opacity: 0;
    transform: scale(0.8);
    position: relative;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.preloader-logo {
    max-width: 180px;
    height: auto;
}

.preloader-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

.preloader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 10px;
    background: linear-gradient(90deg, #ff9d4d, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    filter: drop-shadow(0 2px 10px rgba(255, 126, 95, 0.3));
    text-shadow: 0 0 20px rgba(255, 126, 95, 0.2);
}

.loader-status {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.status-text {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.percentage {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 200;
    color: #fff;
    line-height: 1;
}

.percentage::after {
    content: '%';
    font-size: 18px;
    margin-left: 2px;
    color: #0091FF;
    vertical-align: top;
}

.preloader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--tp-theme-primary), var(--tp-theme-secondary));
    background-size: 200% 100%;
    animation: bar-shimmer 2s infinite linear;
}

@keyframes bar-shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 145, 255, 0.05), transparent);
    z-index: 5;
    pointer-events: none;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100vh); }
}


/* Specific Class Overrides (Buttons & Wrappers) */
.tp-btn-yellow-green {
    background-color: var(--tp-theme-primary) !important;
    color: #ffffff !important;
}

.tp-btn-yellow-green:hover {
    background-color: var(--tp-theme-secondary) !important;
    color: #ffffff !important;
}

.tp-funfact-green-wrap {
    background-color: #f0fafa !important;
    border-color: var(--tp-theme-primary) !important;
}

.tp-funfact-green-wrap.pink-style {
    border-color: #ff4d6d !important;
}

.tp-funfact-green-wrap.yellow-style {
    border-color: #ff9d4d !important;
}

/* Custom styles for elements that might have hardcoded green or specific logic */
.tp-line-white.green {
    background-image: linear-gradient(var(--tp-theme-primary), var(--tp-theme-primary)), linear-gradient(var(--tp-theme-primary), var(--tp-theme-primary)) !important;
}

.tp-btn-black.btn-green-bg .tp-btn-black-circle {
    background: linear-gradient(135deg, var(--tp-theme-secondary) 0%, var(--tp-theme-accent) 100%) !important;
}

.tp-btn-green-border {
    border-color: var(--tp-theme-primary) !important;
    color: var(--tp-theme-primary) !important;
}

.tp-btn-green-border:hover {
    background-color: var(--tp-theme-primary) !important;
    color: #ffffff !important;
}

/* Split Menu Alignment & Colors */
.tp-header-logo img {
    margin: 0 auto;
    display: block;
}

@media (max-width: 991px) {
    .tp-header-logo {
        text-align: left !important;
    }
    .tp-header-logo img {
        margin: 0;
    }
}

.tp-header-menu nav ul li a {
    color: #000000 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tp-header-menu nav ul li a:hover {
    color: var(--tp-theme-primary) !important;
}

.tp-header-menu .tp-submenu li a {
    color: #333333 !important;
}

.tp-header-menu .tp-submenu li a:hover {
    color: var(--tp-theme-primary) !important;
    padding-left: 5px;
}

/* --- Refined GSAP Service Sections (Awwwards Style) --- */

/* 1. Horizontal Feature Scroll */
.horizontal-scroll-section {
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
}

.horizontal-scroll-container {
    display: flex;
    width: 300%; /* Adjust based on cards */
    height: 100vh;
}

.feature-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    border-right: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
    background: #ffffff;
    overflow: hidden;
}

.feature-panel-content {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 5;
}

.feature-panel-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-abstract-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--tp-theme-primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    border-radius: 50%;
}

.feature-illustration {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    opacity: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
}

.feature-bg-text {
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 250px;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    text-transform: uppercase;
    line-height: 0.8;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .feature-panel-content {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }
    .feature-panel-right {
        display: none;
    }
}

.feature-number {
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: -40px;
    display: block;
    font-family: 'Outfit', sans-serif;
    color: #f0f0f0;
}

.feature-title {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1;
    color: #111 !important;
}

.feature-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    max-width: 600px;
}
.feature-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.feature-icon-box {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.feature-list {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #111;
}

.feature-list li span {
    color: var(--tp-theme-primary);
    font-weight: 900;
}

.security-list li span {
    color: var(--tp-theme-secondary);
}

.performance-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--tp-theme-primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

/* 2. Refined Tech Nebula - Light Edition */
.tech-cloud-area {
    padding: 160px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.tech-nebula-container {
    width: 100%;
    height: 700px;
    background: radial-gradient(circle at center, rgba(249, 157, 78, 0.08) 0%, transparent 70%);
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.tech-tag {
    position: absolute;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    min-width: 120px;
}

.tech-tag:hover {
    background: var(--tp-theme-primary);
    border-color: var(--tp-theme-primary);
    color: #fff !important;
    box-shadow: 0 15px 40px rgba(249, 157, 78, 0.3);
    z-index: 1000 !important;
}

.nebula-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 157, 78, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* 3. Sleek Reveal CTA - Light Edition */
.sleek-cta-area {
    padding: 180px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.cta-reveal-wrapper {
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.cta-reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    transform: scale(1.2);
    filter: grayscale(1);
    transition: all 0.6s ease;
}

.cta-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(249, 157, 78, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.cta-content-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.cta-title-large {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    color: #111;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.cta-button-glow {
    display: inline-block;
    padding: 22px 50px;
    background: var(--tp-theme-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(249, 157, 78, 0.25);
}

.cta-button-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(249, 157, 78, 0.4);
    background: #000;
    color: #fff;
}

/* 4. Modern Perspective Solution Cards */
.pp-service-details-solution-ptb {
    padding: 160px 0;
    background: #ffffff;
    position: relative;
}

.solution-card-wrapper {
    perspective: 1500px;
    margin-bottom: 40px;
}

.solution-tilt-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    height: 100%;
    z-index: 1;
    transform-style: preserve-3d;
}

.solution-tilt-card:hover {
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.solution-card-bg-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(0,0,0,0.08);
    line-height: 1;
    pointer-events: none;
}

.solution-card-icon-wrap {
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}

.solution-card-icon-wrap svg {
    width: 70px;
    height: 70px;
    transition: transform 0.4s ease;
}

.solution-tilt-card:hover .solution-card-icon-wrap svg {
    transform: translateZ(30px);
}
/* Advanced Funfact Kinetic Design */
.tp-funfact-area {
    background: #fff; /* Light theme background */
    overflow: hidden;
}

.kinetic-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.tp-funfact-green-wrap {
    background: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 120px 0;
}

.kinetic-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.kinetic-bg-text.outline {
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
    color: transparent;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.funfact-visual-art {
    min-height: 600px;
}

.glass-visual-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    position: relative;
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.system-coordinates {
    position: absolute;
    top: 30px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 6;
}

.system-coordinates.right {
    left: auto;
    right: 20px;
}

.coord {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.connection-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--tp-theme-secondary), transparent);
    margin-left: 20px;
}

.floating-data-bits, .floating-metrics-bits, .floating-brand-bits {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bit, .m-bit, .b-bit {
    position: absolute;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    background: #111;
    padding: 6px 15px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
}

.bit:nth-child(1) { top: 15%; right: 10%; }
.bit:nth-child(2) { bottom: 15%; left: 15%; }
.bit:nth-child(3) { top: 50%; left: 15%; }

.m-bit:nth-child(1) { top: 12%; left: 12%; background: var(--tp-theme-secondary); }
.m-bit:nth-child(2) { bottom: 18%; right: 12%; background: var(--tp-theme-primary); }
.m-bit:nth-child(3) { top: 45%; right: 10%; background: #111; }

.b-bit:nth-child(1) { top: 18%; left: 15%; background: var(--tp-theme-secondary); }
.b-bit:nth-child(2) { bottom: 15%; right: 15%; background: var(--tp-theme-primary); }
.b-bit:nth-child(3) { top: 60%; left: 12%; background: #111; }

.large-kinetic {
    font-size: 80px !important;
    line-height: 0.9 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    margin-bottom: 30px !important;
}

.modern-glow {
    color: var(--tp-theme-secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.f-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tp-theme-secondary);
}

.feat-item span {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.magnetic-item {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 991px) {
    .large-kinetic {
        font-size: 50px !important;
    }
    .funfact-visual-art {
        min-height: 400px;
    }
    .kinetic-bg-text {
        font-size: 40vw;
    }
}

    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transform: translateZ(50px);
}

.solution-card-icon-wrap svg {
    width: 45px;
    height: 45px;
}

.solution-card-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 30px;
    transform: translateZ(40px);
}

.solution-card-list {
    list-style: none;
    padding: 0;
    transform: translateZ(30px);
}

.solution-card-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.solution-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tp-theme-primary);
}

.solution-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 2px solid var(--tp-theme-primary);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.solution-tilt-card:hover .solution-glow-border {
    opacity: 0.3;
}

.solution-card-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 30px;
    transform: translateZ(40px);
}

.solution-card-list {
    list-style: none;
    padding: 0;
    transform: translateZ(30px);
}

.solution-card-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.solution-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tp-theme-primary);
}

.solution-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 2px solid var(--tp-theme-primary);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}


.solution-tilt-card:hover .solution-glow-border {
    opacity: 0.3;
}

/* 
/* 5. Modern Service Overview - Mesh & Parallax Edition */
.service-overview-premium {
    padding: 160px 0;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.overview-mesh-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 20%, rgba(249, 157, 78, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(233, 59, 110, 0.03) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: meshRotate 30s linear infinite;
}

@keyframes meshRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.overview-content-wrap {
    position: relative;
    z-index: 2;
}

.overview-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 157, 78, 0.05);
    border: 1px solid rgba(249, 157, 78, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #f99d4e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.overview-title-modern {
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin-bottom: 40px;
}

.overview-text-reveal {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 650px;
    margin-bottom: 50px;
}

.overview-visual-stack {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-wrap {
    width: 80%;
    height: 80%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    transform: rotate(-2deg);
}

.main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.03);
}

.tech-card-1 { top: 10%; right: 0; transform: rotate(5deg); }
.tech-card-2 { bottom: 15%; left: -5%; transform: rotate(-8deg); }
.tech-card-3 { top: 40%; left: -10%; transform: rotate(-5deg); }

.tech-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.approach-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: rgba(249, 157, 78, 0.2);
}

.approach-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(249, 157, 78, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f99d4e;
    font-size: 24px;
}

.approach-content h5 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

/* 6. Modern Hero Service Banner - Kinetic & 3D Edition */
.hero-banner-premium {
    padding: 160px 0 100px;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.hero-mouse-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(249, 157, 78, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(0,0,0,0.4);
    position: relative;
    z-index: 5;
    display: inline-block;
    margin-bottom: 40px;
}

.hero-title-kinetic {
    font-size: clamp(55px, 8vw, 130px);
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    padding: 0 30px;
}

.hero-title-kinetic span, 
.hero-title-kinetic .word {
    display: inline-block;
    padding: 0 15px;
}

.hero-title-kinetic span {
    display: inline-block;
}

.hero-text-modern {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.hero-stat-card {
    background: #ffffff;
    padding: 35px 50px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.01);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.hero-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
    border-color: rgba(249, 157, 78, 0.1);
}

.stat-num-large {
    font-size: 56px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.stat-label-modern {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.floating-3d-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-3d-obj {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
}

.obj-1 { top: 15%; right: 10%; width: 120px; }
.obj-2 { bottom: 20%; left: 5%; width: 100px; }
.obj-3 { top: 40%; right: 25%; width: 60px; opacity: 0.3; }

.hero-badge-modern {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(249, 157, 78, 0.05);
    color: #f99d4e;
    font-weight: 800;
    border-radius: 100px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(249, 157, 78, 0.1);
    position: relative;
}

.hero-badge-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(249, 157, 78, 0.1);
}

/* 7. Continuous Moving Gradient Animation */
.moving-gradient-text {
    background: linear-gradient(to right, #f99d4e, #e93b6e, #f99d4e);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
    display: inline-block;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* 8. Modern Gradient Buttons */
.moving-gradient-btn {
    background: linear-gradient(to right, #f99d4e, #e93b6e, #f99d4e);
    background-size: 200% auto;
    color: #ffffff !important;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 30px rgba(233, 59, 110, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gradientFlow 3s linear infinite;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.moving-gradient-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(233, 59, 110, 0.4);
    color: #ffffff !important;
}

.moving-gradient-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.moving-gradient-btn:hover i {
    transform: translateX(5px);
}

/* 9. Advanced Section-Specific Cursor Styles */
#magic-cursor {
    pointer-events: none;
}

#ball {
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cursor-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* State: View Details */
.cursor-view #ball {
    width: 80px !important;
    height: 80px !important;
    background-color: rgba(249, 157, 78, 0.9) !important;
    border: none !important;
}
.cursor-view .cursor-label { opacity: 1; }

/* State: Drag / Scroll */
.cursor-drag #ball {
    width: 100px !important;
    height: 100px !important;
    background-color: rgba(233, 59, 110, 0.9) !important;
    border: none !important;
}
.cursor-drag .cursor-label { opacity: 1; }

/* State: 3D Tilt */
.cursor-tilt #ball {
    width: 70px !important;
    height: 70px !important;
    background-color: rgba(17, 17, 17, 0.9) !important;
    border: 2px solid #f99d4e !important;
}
.cursor-tilt .cursor-label { opacity: 1; }

/* State: Highlight (Hero Section) */
.cursor-highlight #ball {
    width: 80px !important;
    height: 80px !important;
    background-color: rgba(17, 17, 17, 0.8) !important;
    border: 1px solid rgba(249, 157, 78, 0.5) !important;
    backdrop-filter: blur(5px);
    mix-blend-mode: normal;
}
.cursor-highlight .cursor-label { 
    opacity: 1; 
    color: #f99d4e;
}

/* 10. Modern Advanced FAQ Section */
.modern-faq-section {
    padding: 140px 0;
    background: radial-gradient(circle at top left, #ffffff, #fcfcfc);
    position: relative;
    overflow: hidden;
}

.faq-visual-shape {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 59, 110, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.modern-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.faq-item-premium {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: block;
}

.faq-item-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 157, 78, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.faq-header-premium {
    padding: 25px 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(249, 157, 78, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f99d4e;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
}

.faq-item-premium.active .faq-icon-toggle {
    background: #e93b6e;
    color: #fff;
    transform: rotate(135deg);
}

.faq-content-premium {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 35px;
    background: rgba(249, 157, 78, 0.01);
}

.faq-item-premium.active .faq-content-premium {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer-inner {
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.faq-answer {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
/* 11. Modern Services Showcase Section */
.tp-inner-service-area {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: visible !important; /* Ensure no clipping */
}

.inner-service-1-left {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    padding-right: 40px;
    z-index: 100;
    height: fit-content; /* Critical for sticky inside flex/grid */
    transition: opacity 0.3s ease;
}

.inner-service-1-left > span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #bbb;
    margin-bottom: 40px;
    display: block;
}

.service-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav-item {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #999;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    white-space: nowrap;
    opacity: 0.6;
}

.service-nav-item.active {
    color: #e93b6e;
    opacity: 1;
    transform: translateX(10px);
}

.service-nav-item::before {
    content: '';
    width: 0;
    height: 2px;
    background: #e93b6e;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-nav-item.active::before {
    width: 20px;
}

.service-item-modern {
    margin-bottom: 120px;
    position: relative;
    opacity: 1; /* Handled by GSAP reveal */
}

.service-num-huge {
    font-size: clamp(200px, 25vw, 400px);
    font-weight: 900;
    line-height: 0.8;
    color: rgba(249, 157, 78, 0.02);
    position: absolute;
    top: -80px;
    left: -50px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    -webkit-text-stroke: 1.5px rgba(0,0,0,0.02);
}

.service-content-box {
    position: relative;
    z-index: 5;
    padding-top: 40px;
}

.service-category-tag {
    font-size: 14px;
    font-weight: 800;
    color: #f99d4e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.service-main-title {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #111;
}

.service-desc-modern {
    font-size: 17px;
    color: #555;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.service-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none !important;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.feature-num {
    font-size: 14px;
    font-weight: 800;
    color: #e93b6e;
    font-family: 'Outfit', sans-serif;
}

.feature-label {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: #111;
    transition: all 0.4s ease;
}

.feature-icon-minimal {
    color: #999;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.feature-row-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, #e93b6e 0%, #f99d4e 100%);
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-feature-row:hover .feature-row-bg {
    height: 100%;
}

.service-feature-row:hover .feature-label,
.service-feature-row:hover .feature-num,
.service-feature-row:hover .feature-icon-minimal {
    color: #fff;
    transform: translateX(15px);
}

.service-feature-row:hover .feature-icon-minimal {
    transform: rotate(45deg) translateX(-15px);
    color: #e93b6e;
}

/* Service Detail Image Hover Effect */
.service-visual-box {
    position: relative;
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.service-visual-box img {
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-visual-box:hover img {
    transform: scale(1.1);
}

.service-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-visual-box:hover .service-visual-overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .service-sidebar-nav {
        position: relative;
        top: 0;
        margin-bottom: 80px;
        padding-right: 0;
    }
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    .service-num-huge {
        font-size: 150px;
        top: -40px;
    }
}

/* 12. Premium Ticker Section (Light Theme) */
.premium-ticker-wrapper {
    overflow: hidden;
    background: #fdfdfd;
    padding: 100px 0;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.premium-ticker-inner {
    display: flex;
    /* Animation handled by GSAP for better control */
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.ticker-text {
    font-size: clamp(50px, 8vw, 120px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,0,0,0.2); /* Darker for readability */
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.2;
}

.ticker-text:hover {
    color: #e93b6e; /* Brand color on hover */
    -webkit-text-stroke: 1.5px #e93b6e;
}

.ticker-text .dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #e93b6e 0%, #f99d4e 100%);
    border-radius: 50%;
    margin: 0 60px;
    vertical-align: middle;
}

/* reveal animation utility */
.reveal-anim {
    opacity: 1; /* Ensure visible by default */
}

/* 13. Premium About Hero Section */
.about-hero-premium {
    padding: 180px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.04) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.about-hero-tag {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #bbb;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: clamp(55px, 8vw, 130px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #111;
    white-space: nowrap;
    padding: 0 20px;
    text-transform: uppercase;
}

.about-hero-title .title-line {
    display: block;
    position: relative;
    padding-bottom: 0.1em; /* Space for descenders */
}

.about-hero-title .pink-text {
    background: linear-gradient(90deg, #e93b6e 0%, #f99d4e 50%, #e93b6e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientMove 4s linear infinite;
}

@keyframes textGradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.about-hero-description {
    margin-bottom: 20px;
}

.about-sub-label {
    margin-bottom: 15px;
}

.about-sub-label span {
    font-size: 12px;
    font-weight: 800;
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.about-hero-description p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* About Hero Ticker */
.about-hero-ticker-wrap {
    margin-top: 80px;
    white-space: nowrap;
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.about-hero-ticker-inner {
    display: flex;
}

.ticker-text-huge {
    font-size: clamp(100px, 15vw, 200px);
    font-weight: 900;
    color: rgba(0,0,0,0.02); /* Very subtle fill */
    -webkit-text-stroke: 1.5px rgba(0,0,0,0.2); /* Thicker and darker stroke */
    text-transform: uppercase;
    line-height: 1;
}

.ticker-text-huge span {
    color: #e93b6e;
    margin: 0 40px;
}

@media (max-width: 1200px) {
    .about-hero-title .pink-text {
        margin-left: 0;
    }
    .about-hero-description {
        padding-left: 0;
        border-left: none;
        margin-top: 40px;
    }
}

/* 14. Refined Mission Who We Are Section */
.about-refined-wrap {
    padding: 160px 0;
    position: relative;
    background: #fff;
}

.refined-sidebar {
    position: sticky;
    top: 150px;
}

.brand-eyebrow {
    font-size: 14px;
    font-weight: 800;
    color: #e93b6e;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.refined-heading {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    color: #111;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.accent-text {
    color: #e93b6e;
}

.refined-image-box {
    position: relative;
    padding: 20px;
}

.image-frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-top: 2px solid #e93b6e;
    border-left: 2px solid #e93b6e;
    z-index: 0;
}

.refined-img-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    aspect-ratio: 4/5;
    filter: url(#liquid-water-filter); /* Hook for liquid animation */
    transition: filter 0.3s ease;
}

.refined-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.refined-content-area {
    padding-left: 40px;
}

.refined-main-text {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin-bottom: 80px;
}

.mission-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.pillar-item {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(40px);
}

.pillar-item.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

.pillar-item:nth-child(2) { transition-delay: 0.15s; }
.pillar-item:nth-child(3) { transition-delay: 0.3s; }

.pillar-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #fff8f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-item:hover .pillar-icon {
    background: #e93b6e;
    transform: scale(1.1) rotate(5deg);
}

.pillar-item:hover .pillar-icon svg path,
.pillar-item:hover .pillar-icon svg rect,
.pillar-item:hover .pillar-icon svg circle {
    stroke: #fff;
}

.pillar-info {
    flex-grow: 1;
}

.pillar-info h4 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pillar-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.pillar-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #fff8f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* JS Animation Helper Classes */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.2em;
}

.word-inner {
    display: inline-block;
}

.refined-philosophy-box {
    background: #f9f9fb;
    padding: 60px;
    border-radius: 30px;
}

.phil-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e93b6e;
    margin-bottom: 20px;
}

.refined-philosophy-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}

.refined-philosophy-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .refined-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 80px;
    }
    .refined-content-area {
        padding-left: 0;
    }
    .refined-heading {
        font-size: 40px;
    }
}

.service-modern-img-inner {
    filter: url(#liquid-water-filter);
    transition: filter 0.3s ease;
}

/* 15. Redesigned Funfact Panels */
.tp-funfact-area {
    background: #fff;
}

.funfact-visual-art {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9fb;
    border-radius: 40px;
    overflow: visible; /* Allow floating bits to overlap slightly without clipping */
}

.art-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(233, 59, 110, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(233, 59, 110, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.art-grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.art-orbit-rings {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(233, 59, 110, 0.1);
    border-radius: 50%;
}

.art-orbit-rings::before {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(233, 59, 110, 0.05);
    border-radius: 50%;
}

.big-metric-text {
    font-size: 180px;
    font-weight: 950;
    line-height: 1;
    color: #e93b6e;
    letter-spacing: -10px;
    z-index: 2;
    position: relative;
}

.big-metric-text em {
    font-style: normal;
    font-size: 0.5em;
    vertical-align: super;
}

.funfact-info-box {
    padding-left: 60px;
}

.f-eyebrow {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #e93b6e;
    display: block;
    margin-bottom: 20px;
}

.f-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.f-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 30px;
}

.f-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.f-tags span {
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    background: #f1f1f1;
    border-radius: 50px;
    color: #111;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.f-tags.tech span {
    background: #111;
    color: #fff;
}

.f-tags.impact span {
    background: #fff5f7;
    color: #e93b6e;
    border: 1px solid rgba(233, 59, 110, 0.1);
}

.design-detail-box {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.d-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.tech-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.t-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
}

.t-node:nth-child(1) { top: 30%; right: 20%; }
.t-node:nth-child(2) { bottom: 40%; left: 15%; }

.m-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #e93b6e;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(233, 59, 110, 0.4);
}

.marker-1 { top: 40%; left: 45%; }
.marker-2 { top: 35%; left: 60%; }
.marker-3 { top: 55%; left: 55%; }

.floating-icons-box {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.f-icon {
    position: absolute;
}

.icon-1 { top: 20%; left: 20%; }
.icon-2 { bottom: 20%; right: 20%; }

.code-snippet-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #111;
    padding: 20px;
    border-radius: 15px;
    width: 200px;
}

.code-line {
    height: 4px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 8px;
    border-radius: 2px;
}

.code-line.short { width: 40%; }
.code-line.mid { width: 70%; }

@media (max-width: 1200px) {
    .funfact-visual-art { height: 350px; }
    .big-metric-text { font-size: 120px; }
    .f-title { font-size: 50px; }
    .funfact-info-box { padding-left: 0; margin-top: 40px; }
}

/* Split Text Reveal Utilities */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.word-inner {
    display: inline-block;
    transform: translateY(0);
}

/* -------------------------------------------
   PREMIUM CONTACT SECTION
   ------------------------------------------- */
.premium-contact-area {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-contact-glass {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
}

.contact-map-premium {
    height: 100%;
    min-height: 600px;
    position: relative;
    background: #f0f0f0;
}

.map-overlay-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(0,0,0,0.4));
    pointer-events: none;
    z-index: 1;
}

.contact-location-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #111;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-location-tag i {
    color: var(--tp-theme-primary);
}

.contact-form-premium {
    padding: 80px 60px;
    background: #fafafa;
}

.form-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--tp-theme-primary);
    margin-bottom: 10px;
}

.form-title {
    font-size: 45px;
    font-weight: 900;
    color: #111;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group-modern {
    position: relative;
    margin-bottom: 10px;
}

.form-group-modern.full-width {
    grid-column: span 2;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding: 25px 0 10px;
    font-size: 16px;
    color: #111;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group-modern textarea {
    min-height: 120px;
    resize: none;
}

.form-group-modern label {
    position: absolute;
    top: 25px;
    left: 0;
    font-size: 16px;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    font-weight: 800;
    color: #e93b6e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.group-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e93b6e;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group-modern input:focus ~ .group-focus-border,
.form-group-modern textarea:focus ~ .group-focus-border {
    width: 100%;
}

.form-submit-wrap {
    grid-column: span 2;
    margin-top: 20px;
}

.premium-submit-btn {
    background: linear-gradient(135deg, #e93b6e 0%, #f99d4e 100%);
    color: #fff;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    justify-content: center;
}

.premium-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 59, 110, 0.4);
}

.premium-submit-btn i {
    font-size: 16px;
    transition: transform 0.4s ease;
}

.premium-submit-btn:hover i {
    transform: translate(5px, -5px);
}

.premium-alert {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.premium-alert.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

@media (max-width: 991px) {
    .premium-contact-glass {
        flex-direction: column;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-modern.full-width {
        grid-column: span 1;
    }
    .form-submit-wrap {
        grid-column: span 1;
    }
    .contact-form-premium {
        padding: 60px 30px;
    }
}

/* -------------------------------------------
   MODERN CONTACT INFO CARDS
   ------------------------------------------- */
.tp-contact-info-pills {
    background: #ffffff;
}

.contact-info-card-premium {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: #e93b6e;
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.contact-info-card-premium:hover .card-icon-wrap {
    background: linear-gradient(135deg, #e93b6e 0%, #f99d4e 100%);
}

.card-icon-wrap i {
    font-size: 32px;
    background: linear-gradient(135deg, #e93b6e 0%, #f99d4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.contact-info-card-premium:hover .card-icon-wrap i {
    -webkit-text-fill-color: #fff;
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #e93b6e 0%, #f99d4e 100%);
    border-radius: 25px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-info-card-premium:hover .icon-glow {
    opacity: 0.3;
}

.card-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.card-value {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-value.address {
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-value:hover {
    color: #e93b6e;
}

.card-sub-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.card-link {
    font-size: 14px;
    font-weight: 700;
    color: #e93b6e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    position: relative;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .contact-info-card-premium {
        padding: 40px 20px;
    }
}


/* --- High-End GSAP Mega Menu Glassmorphism --- */
.has-mega-menu {
    position: static !important;
}

.tp-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.45); /* More transparent */
    backdrop-filter: blur(45px) saturate(180%); /* Higher blur and saturation */
    -webkit-backdrop-filter: blur(45px) saturate(180%);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 100px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.96);
    transform-origin: top center;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
    overflow: hidden;
}

/* Decorative Mesh Background for Mega Menu */
.tp-megamenu::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(249, 157, 78, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(233, 59, 110, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    animation: meshRotate 20s linear infinite;
}

.has-mega-menu:hover .tp-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mega-menu-item {
    padding: 0 45px;
    opacity: 0; 
    transform: translateY(30px);
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.mega-menu-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}

.mega-menu-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(249, 157, 78, 0.1) 0%, rgba(233, 59, 110, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-theme-primary);
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.mega-menu-item:hover .mega-menu-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--tp-theme-primary) 0%, var(--tp-theme-secondary) 100%);
    color: #fff;
    box-shadow: 0 15px 30px rgba(249, 157, 78, 0.3);
}

.col-xl-3:last-child .mega-menu-item {
    border-right: none;
}

.mega-menu-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 0;
    position: relative;
    display: block;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 25px;
    height: 3px;
    background: linear-gradient(to right, var(--tp-theme-primary), var(--tp-theme-secondary));
    border-radius: 10px;
}

.mega-menu-title a {
    color: inherit !important;
}

.mega-menu-list li {
    margin-bottom: 18px;
    display: block;
}

.mega-menu-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6) !important;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.mega-menu-list li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--tp-theme-primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mega-menu-list li a:hover {
    color: #000 !important;
    transform: translateX(10px);
}

.mega-menu-list li a:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

@media (max-width: 1199px) {
    .tp-megamenu {
        display: none !important;
    }
}


/* Spotlight Effect for Mega Menu */
.tp-megamenu {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.tp-megamenu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(249, 157, 78, 0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.has-mega-menu:hover .tp-megamenu::after {
    opacity: 1;
}


/* Sidebar Nav Link Styling */
.service-nav-item a {
    color: inherit !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    width: 100%;
}

.service-nav-item:hover a {
    color: #e93b6e !important;
}


/* --- Premium Sticky Header Implementation --- */
#header-sticky.header-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    animation: headerSlideDown 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    z-index: 10000 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Header link colors when sticky */
#header-sticky.header-sticky .tp-main-menu-content ul li a {
    color: #111 !important;
    font-weight: 600;
}

#header-sticky.header-sticky .logo-white {
    display: none !important;
}

#header-sticky.header-sticky .logo-black {
    display: block !important;
}

/* Ensure mega menu remains perfectly aligned when sticky */
#header-sticky.header-sticky .tp-megamenu {
    top: 100% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(40px) !important;
}


/* --- Modernized Design Thinking Process Section --- */
.process-modern-bg {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-kinetic-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.process-title-kinetic {
    font-size: clamp(60px, 8vw, 120px) !important;
    font-weight: 950 !important;
    line-height: 0.9 !important;
    letter-spacing: -4px !important;
    margin-bottom: 40px !important;
}

.process-intro-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 450px;
}

.process-card-modern {
    background: transparent;
    position: relative;
    padding: 50px;
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.04);
}

.process-card-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    z-index: -1;
    transition: all 0.5s ease;
}

.process-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(233, 59, 110, 0.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
}

.process-card-modern:hover .process-card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
}

.process-card-modern .tp-work-number {
    width: 70px;
    height: 70px;
    background: #111;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.step-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #e93b6e 0%, #f99d4e 100%);
    border-radius: 24px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card-modern:hover .step-glow {
    opacity: 0.4;
}

.process-card-modern:hover .tp-work-number {
    background: #e93b6e;
    transform: rotate(-10deg);
}

.process-tag-list {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.process-tag-list span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.04);
    padding: 5px 15px;
    border-radius: 50px;
    color: #888;
}

.process-card-modern:hover .process-tag-list span {
    background: rgba(233, 59, 110, 0.1);
    color: #e93b6e;
}


/* Fix for Process Card Visibility */
.process-card-modern {
    opacity: 1 !important;
    visibility: visible !important;
}


/* Z-index fix for process cards */
.process-step-grid {
    position: relative;
    z-index: 100 !important;
}

.process-card-modern {
    z-index: 110 !important;
}


/* --- Premium Services Sidebar --- */
.premium-service-sidebar {
    position: relative;
    padding: 40px 30px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 10;
    transition: all 0.4s ease;
}

.sidebar-glass-effect {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 30px;
    z-index: -1;
}

.sidebar-header {
    margin-bottom: 40px;
}

.sidebar-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.05);
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #e93b6e, #f99d4e);
}

.service-nav-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav-item-modern {
    margin-bottom: 12px;
    position: relative;
}

.service-nav-item-modern a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    color: #666 !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    background: transparent;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-nav-item-modern a i {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    font-size: 14px;
    color: #e93b6e;
}

.service-nav-item-modern.active a,
.service-nav-item-modern:hover a {
    color: #111 !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.service-nav-item-modern.active .nav-dot,
.service-nav-item-modern:hover .nav-dot {
    background: #e93b6e;
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(233, 59, 110, 0.5);
}

.service-nav-item-modern.active a i,
.service-nav-item-modern:hover a i {
    opacity: 1;
    transform: translateX(0);
}


/* Modern Select Styling for Contact Form */
.form-group-modern select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding: 25px 0 10px;
    font-size: 16px;
    color: #111;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-group-modern select:focus {
    outline: none;
}

.form-group-modern select:focus + label,
.form-group-modern select:not(:invalid) + label {
    top: 0;
    font-size: 12px;
    font-weight: 800;
    color: #e93b6e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Arrow DISABLED - was causing icons on ALL fields */


/* Fix for Select Label Overlap */
.form-group-modern select + label {
    top: 0 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-modern select:focus + label {
    color: #e93b6e !important;
}

.form-group-modern select {
    padding-top: 30px !important;
}


/* -------------------------------------------
   MODERN CONTACT REFINEMENTS
   ------------------------------------------- */
.form-group-modern {
    position: relative;
    padding-top: 15px;
}

.form-group-modern label {
    position: absolute;
    top: 35px;
    left: 0;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-group-modern.is-focused label,
.form-group-modern.has-value label {
    top: 0;
    font-size: 11px;
    color: #e93b6e;
    letter-spacing: 1px;
}

.form-group-modern input, 
.form-group-modern textarea,
.form-group-modern select {
    border-bottom: 1.5px solid rgba(0,0,0,0.06) !important;
    padding-bottom: 15px !important;
    font-family: 'Outfit', sans-serif;
}

.form-group-modern.is-focused input,
.form-group-modern.is-focused textarea {
    border-bottom-color: transparent !important;
}

.group-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e93b6e, #f99d4e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-submit-btn {
    overflow: hidden;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.contact-info-card-premium {
    border: 1px solid rgba(0,0,0,0.04);
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: #f8f8f8;
    border-radius: 50px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin: 0 10px 15px;
}

.social-pill:hover {
    background: #111;
    color: #fff;
    transform: translateY(-5px);
}

.social-pill.fb:hover { background: #1877f2; }
.social-pill.ig:hover { background: #e4405f; }
.social-pill.th:hover { background: #000000; }
.social-pill.pn:hover { background: #E60023; }
.social-pill.li:hover { background: #0077B5; }
.social-pill.tp:hover { background: #00b67a; }

.center-form-layout {
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Custom Select Styling - NUCLEAR RESET */
.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important; /* Force hide any background image first */
    box-shadow: none !important;
}

/* Specifically target only the select elements for the brand arrow */
.form-group-modern select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23e93b6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

/* Specific Browser Icon Removal (Chrome, Safari, Firefox, IE) */
.form-group-modern input::-webkit-calendar-picker-indicator,
.form-group-modern input::-webkit-inner-spin-button,
.form-group-modern input::-webkit-clear-button,
.form-group-modern input::-ms-reveal,
.form-group-modern input::-ms-clear,
.form-group-modern input::-webkit-contacts-auto-fill-button,
.form-group-modern input::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    -webkit-appearance: none !important;
}

.form-group-modern select option {
    background: #fff;
    color: #333;
    padding: 15px;
}

.form-group-modern.is-focused select {
    background-position: right 10px center;
}

.sub-service-field.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(10px);
}

.form-group-modern.is-disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}

.form-group-modern.is-disabled label {
    color: #ccc !important;
}



/* ======================== */
/* 3D Realistic Globe       */
/* ======================== */
.globe-section {
    background: #050510;
    overflow: hidden;
    position: relative;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: grab;
}

.globe-container:active {
    cursor: grabbing;
}

.globe-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.globe-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.globe-pin-label {
    position: absolute;
    display: inline-block;
    background: #050505;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
    pointer-events: none;
    transform: translate(35px, -50%);
    white-space: nowrap;
    border: 1px solid #00ddff;
}

.globe-pin-label.primary {
    font-size: 15px;
    padding: 8px 14px;
}

.pin-label-dot {
    display: none;
}

@keyframes globePinPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px #00ddff; }
    50% { opacity: 0.5; transform: scale(1.6); box-shadow: 0 0 16px #00ddff; }
}

@media (max-width: 768px) {
    .globe-container {
        height: 380px;
    }
    .globe-pin-label {
        font-size: 11px;
        padding: 4px 12px;
    }
}
/* --- Responsive Hero & Kinetic Typography Fixes --- */
@media (max-width: 1200px) {
    .hero-title-kinetic {
        font-size: clamp(45px, 7vw, 100px);
    }
}

@media (max-width: 991px) {
    .hero-banner-premium {
        padding: 120px 0 60px;
    }
    .hero-title-kinetic {
        font-size: clamp(38px, 9vw, 65px);
        padding: 0 15px;
    }
    .hero-text-modern {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .hero-stat-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .hero-stat-card {
        padding: 25px 30px;
        flex: 1 1 250px;
        justify-content: center;
    }
    .floating-3d-obj {
        transform: scale(0.7);
    }
    .obj-1 { right: 5%; }
    .obj-2 { left: 2%; }
}

@media (max-width: 575px) {
    .hero-banner-premium {
        padding: 100px 0 50px;
    }
    .hero-title-kinetic {
        font-size: 34px !important;
        letter-spacing: -1px;
    }
    .hero-title-kinetic .word {
        padding: 0 5px;
    }
    .hero-stat-card {
        padding: 20px;
        flex: 1 1 100%;
    }
    .stat-num-large {
        font-size: 40px;
    }
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .cta-title-large {
        font-size: 40px;
    }
    .overview-title-modern {
        font-size: 36px;
    }
}
@media (max-width: 1200px) {
    .floating-tech-card {
        padding: 12px 20px;
        transform: scale(0.8);
    }
}

@media (max-width: 991px) {
    .overview-visual-stack {
        height: auto;
        margin-top: 50px;
    }
    .main-image-wrap {
        width: 100%;
        transform: none;
    }
    .floating-tech-card {
        display: none !important; /* Hide floating elements on mobile to prevent overlapping */
    }
}

/* Mobile Menu Button Visibility Fix - PREMIUM BRANDING VERSION */
@media (max-width: 991px) {
    .tp-offcanvas-open-btn {
        position: relative;
        z-index: 9999 !important;
        width: 45px !important;
        height: 45px !important;
        background: linear-gradient(135deg, #f99d4e 0%, #e93b6e 100%) !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: none !important;
        padding: 0 !important;
        box-shadow: 0 4px 15px rgba(233, 59, 110, 0.4);
    }
}

@media (min-width: 992px) {
    .tp-offcanvas-open-btn {
        display: none !important;
    }
}

.tp-offcanvas-open-btn span:first-child {
    display: none !important;
}

.tp-offcanvas-open-btn i, .tp-offcanvas-open-btn span i {
    display: block !important;
    background: #fff !important;
    height: 2px !important;
    width: 22px !important;
    margin: 2px 0 !important;
    border-radius: 4px;
}

.tp-offcanvas-open-btn svg {
    fill: #fff !important;
    width: 20px;
}

@media (max-width: 991px) {
    .tp-header-logo img {
        max-width: 150px !important;
    }
}

