@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark-deep: #02040e;
    --bg-dark-card: rgba(8, 17, 41, 0.45);
    --bg-gradient: radial-gradient(circle at 50% 50%, #08112c 0%, #030612 70%, #010206 100%);
    
    /* Accents & Glows */
    --accent-cyan: #00f2fe;
    --accent-purple: #9d4edd;
    --accent-magenta: #f72585;
    --accent-blue: #3b82f6;
    
    --glow-cyan: 0 0 15px rgba(0, 242, 254, 0.45);
    --glow-purple: 0 0 15px rgba(157, 78, 221, 0.45);
    --glow-magenta: 0 0 20px rgba(247, 37, 133, 0.5);
    --glow-blue: 0 0 15px rgba(59, 130, 246, 0.4);
    
    /* Glassmorphism Constants */
    --glass-bg: rgba(6, 12, 32, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.18);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* Page Container for consistent layout widths and side margins */
.page-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.6);
    box-shadow: var(--glow-cyan);
}

/* Selection */
::selection {
    background: rgba(0, 242, 254, 0.3);
    color: var(--text-primary);
}

/* Custom Cursor Dot */
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.05s linear;
    box-shadow: var(--glow-cyan);
}

/* Custom Cursor Outer Ring */
.custom-cursor-ring {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--accent-purple);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Cursor Hover States */
body.cursor-hover .custom-cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--accent-cyan);
    background-color: rgba(0, 242, 254, 0.06);
    box-shadow: var(--glow-cyan);
}
body.cursor-hover .custom-cursor-dot {
    background-color: var(--accent-cyan);
    transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(1.5);
}

/* Hide Custom Cursor on Mobile & Tablet */
@media (max-width: 991.98px) {
    *, *::before, *::after {
        cursor: auto !important;
    }
    body {
        cursor: auto;
    }
    .custom-cursor-dot,
    .custom-cursor-ring {
        display: none !important;
    }
}

/* Glassmorphism Header */
.glass-header {
    position: relative;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(190%);
    -webkit-backdrop-filter: blur(16px) saturate(190%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-top: 20px;
    padding: 10px 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.glass-header:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(157, 78, 221, 0.15);
}

/* Navigation Styles */
.navbar-brand img {
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: var(--transition-smooth);
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 12px var(--accent-cyan));
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition-fast) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary) !important;
    text-shadow: 0 0 8px rgba(0, 255, 242, 0.658);
    border-bottom: 2px solid #3b83f670;
    box-shadow: 0 -2px 10px #3b83f64b;
}

/* Glass Dropdown Menu */
.dropdown-menu.glass-dropdown {
    z-index: 1050;
    background: rgba(6, 12, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    display: block; /* Managed via opacity/visibility for animations */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-menu.glass-dropdown {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--accent-cyan);
    background-color: rgba(0, 242, 254, 0.08);
    padding-left: 20px;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
}

/* Services Mega Menu container alignment override */
.dropdown-menu.glass-dropdown.mega-menu-container {
    width: 650px !important;
    max-width: 90vw;
    padding: 20px;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
}

.dropdown:hover .dropdown-menu.glass-dropdown.mega-menu-container {
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu tab styling (Left side) */
.mega-menu-tab {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-fast);
    border-left: 2px solid transparent;
}

.mega-menu-tab:hover, .mega-menu-tab.active {
    color: var(--accent-cyan) !important;
    background: rgba(0, 242, 254, 0.06) !important;
    border-left-color: var(--accent-cyan);
    padding-left: 20px;
}

/* Submenu links (Right side) */
.submenu-link {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.submenu-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.04);
    padding-left: 18px;
    text-shadow: 0 0 8px var(--accent-cyan);
}

.submenu-link i {
    font-size: 16px;
    transition: var(--transition-fast);
}

.submenu-link:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px currentColor);
}

/* Glassmorphism Mobile Offcanvas Drawer */
.glass-drawer {
    background: rgba(4, 9, 24, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    width: 320px !important;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
}

.glass-drawer .offcanvas-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 24px;
}

.glass-drawer .navbar-brand img {
    height: 50px;
}

.glass-drawer .offcanvas-body {
    padding: 30px 24px;
}

.glass-drawer .nav-link {
    color: var(--text-secondary) !important;
    font-size: 16px;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease !important;
}

.glass-drawer .nav-link:hover, .glass-drawer .nav-link.active {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
}

.glass-drawer .btn-close-white {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.glass-drawer .btn-close-white:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Glowing Buttons */
.btn-glow-cyan {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b4d8 100%);
    color: #02040e !important;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow-cyan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00b4d8 0%, var(--accent-cyan) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-glow-cyan:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), 0 8px 20px rgba(0, 242, 254, 0.4);
}

.btn-glow-cyan:hover::before {
    opacity: 1;
}

.btn-glow-purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-magenta) 100%);
    color: var(--text-primary) !important;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-purple) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-glow-purple:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple), 0 8px 20px rgba(157, 78, 221, 0.5);
}

.btn-glow-purple:hover::before {
    opacity: 1;
}

/* Glowing Border Button */
.btn-glow-outline {
    background: rgba(6, 12, 32, 0.7);
    color: var(--text-primary) !important;
    border: 1.5px solid var(--accent-purple);
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.1);
}

.btn-glow-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), 0 0 20px rgba(0, 242, 254, 0.2);
}

/* Phone Glow Button */
.btn-phone-glow {
    position: relative;
    background: rgba(6, 12, 32, 0.7);
    color: var(--text-primary) !important;
    border: 1.5px solid var(--accent-purple);
    border-radius: 30px;
    padding: 6px 16px 6px 48px; /* Large left padding to make space for absolute icon */
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.15);
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.btn-phone-glow .phone-icon-circle {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%) translateX(0);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), background 1s ease, color 1s ease, box-shadow 1s ease;
    z-index: 2;
}

.phone-text-wrapper {
    display: inline-grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
}

.phone-text-default,
.phone-text-hover {
    grid-area: 1 / 1;
    transition: opacity 0.7s ease, transform 0.7s ease;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: center;
}

.phone-text-default {
    opacity: 1;
    transform: scale(1);
}

.phone-text-hover {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.btn-phone-glow:hover {
    padding: 6px 48px 6px 16px; /* Swap padding to make space for absolute icon on the right */
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-phone-glow:hover .phone-icon-circle {
    left: calc(100% - 8px);
    transform: translateY(-50%) translateX(-100%);
    background: var(--accent-cyan);
    color: #02040e;
    box-shadow: var(--glow-cyan);
}

.btn-phone-glow:hover .phone-text-default {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.btn-phone-glow:hover .phone-text-hover {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-purple) 70%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-glow {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.2));
}

/* Glassmorphism Card System */
.glass-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card-new {
    backdrop-filter: blur(8px);
    border: 1px solid #00f1fe6b;
    border-radius: 100px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.08), transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Hero Card Styles */
.hero-card {
    background: linear-gradient(180deg, rgba(8, 17, 41, 0.8) 0%, rgba(3, 6, 18, 0.95) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .hero-card {
        min-height: 260px;
        padding: 80px 40px;
    }
}

@media (min-width: 1024px) {
    .hero-card {
        min-height: 500px;
        padding: 100px 40px;
    }
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-purple) 30%, var(--accent-cyan) 70%, transparent 100%);
    filter: blur(1px);
    box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-purple);
}

/* Rotating Dotted Design Asset */
.hero-dotted-asset {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 350px;
    height: 350px;
    opacity: 0.4;
    pointer-events: none;
    animation: rotateSlow 24s linear infinite;
    z-index: 0;
}

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

.breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.breadcrumb-item.active {
    color: var(--accent-purple);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* Glowing Info Icons */
.info-icon-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.05);
}

.info-item:hover .info-icon-wrapper {
    background: var(--accent-purple);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-purple);
}

.info-item .text-muted {
    color: var(--text-secondary) !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Sleek Social Icons */
.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    color: #02040e;
    transform: translateY(-4px);
}

.social-icon-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.social-icon-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #cc2366;
    box-shadow: 0 0 15px rgba(204, 35, 102, 0.5);
}

.social-icon-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.social-icon-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

/* Premium Form Inputs */
.form-group-custom {
    position: relative;
    margin-bottom: 24px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-control-custom::placeholder {
    color: transparent; /* Used for custom floating label behavior */
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    outline: none;
    box-shadow: var(--glow-cyan), inset 0 0 8px rgba(0, 242, 254, 0.1);
}

/* Floating Labels */
.form-label-custom {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-control-custom:focus ~ .form-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    left: 15px;
    padding: 0 8px;
    background: #050b1e;
    color: var(--accent-cyan);
    font-weight: 600;
    border-radius: 4px;
}

/* Textarea Floating Label adjustment */
textarea.form-control-custom {
    min-height: 120px;
    resize: none;
}

textarea.form-control-custom ~ .form-label-custom {
    top: 24px;
}

textarea.form-control-custom:focus ~ .form-label-custom,
textarea.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: 0;
}

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

.section-spacing-gap {
    margin-bottom: 120px !important;
}

@media (max-width: 768px) {
    .section-spacing-gap {
        margin-bottom: 70px !important;
    }
}

/* Modern Animations & Transitions */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-3px);
}

/* Fade-In Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Dark-themed Google Map styling */
.map-container iframe {
    transition: var(--transition-smooth);
    filter: grayscale(1) invert(0.9) contrast(1.2);
    opacity: 0.85;
}

.map-container:hover iframe {
    filter: none;
    opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .glass-header {
        margin-top: 10px;
        padding: 8px 16px;
    }
    
    .navbar-collapse {
        background: rgba(6, 12, 32, 0.98);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        margin-top: 12px;
        padding: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .dropdown-menu.glass-dropdown {
        display: none; /* Fallback to standard bootstrap dropdown interactions on mobile */
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        transform: none;
    }
    
    .dropdown:hover .dropdown-menu.glass-dropdown {
        display: none;
    }
    
    .dropdown.show .dropdown-menu.glass-dropdown {
        display: block;
    }
}

/* Section Badge styling matching the requested design */
.gradient-bar {
    width: 28px;
    height: 6px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0) 0%, #3b82f6 100%);
    border-radius: 3px;
    display: inline-block;
}

.tracking-wider {
    letter-spacing: 0.15em;
}

.fs-7 {
    font-size: 0.8rem;
}

.text-cyan {
    color: var(--accent-cyan) !important;
}

/* Footer Styles */
.footer-section {
    position: relative;
    z-index: 1;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links a {
    font-size: 15px;
    transition: var(--transition-fast);
}

.hover-cyan:hover {
    color: var(--accent-cyan) !important;
    text-shadow: var(--glow-cyan);
}

.footer-contact-info,
.footer-contact-info a {
    font-size: 15px;
    transition: var(--transition-fast);
}

.opacity-15 {
    opacity: 0.15 !important;
}

/* Footer Specific Glass Card style to match reference image border */
.footer-section .glass-card {
    border: none !important; /* Remove native card border */
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    margin-bottom: 0 !important;
}

/* Pseudo-element to draw left, top, right border fading out at the bottom */
.footer-section .glass-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(157, 78, 221, 0.6);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 3;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    transition: border-color 0.4s ease;
}
.footer-section .glass-card:hover::after {
    border-color: rgba(157, 78, 221, 0.9);
}

/* Client Logos Infinite Marquee */
.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-marquee {
    display: flex;
    width: 100%;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: marqueeScroll 28s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    padding: 0 20px;
    transition: var(--transition-smooth);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1.2) opacity(1) drop-shadow(0 0 15px rgba(0, 242, 254, 0.5));
    transform: scale(1.15);
}

.marquee-fade-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 150px;
    background: linear-gradient(to right, #9d4edd3b 10%, transparent);
    z-index: 2;
    pointer-events: none;
    border-radius: 10%;
}

.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 150px;
    background: linear-gradient(to left, #00f1fe1f 10%, transparent);
    z-index: 2;
    pointer-events: none;
    border-radius: 10%;
}

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

/* Overlapping Images & Redesigned About Section */
.about-images-container {
    position: relative;
    height: 480px;
    width: 100%;
}

.about-image-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    background: var(--bg-dark-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(0, 242, 254, 0.25);
}

.img-card-1 {
    width: 60%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-card-2 {
    width: 58%;
    height: 320px;
    bottom: 0;
    right: 0;
    z-index: 2;
    border-color: rgba(157, 78, 221, 0.25);
}

.img-card-2:hover {
    box-shadow: 0 25px 50px rgba(157, 78, 221, 0.3);
    border-color: var(--accent-purple);
}

/* Background Decorative Circle */
.about-deco-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 242, 254, 0.2);
    top: 8%;
    left: -15%;
    z-index: 0;
    pointer-events: none;
    animation: rotateSlow 40s linear infinite;
}

.about-deco-circle::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
    .about-images-container {
        height: 380px;
        margin-bottom: 50px;
    }
    .img-card-1 {
        height: 300px;
    }
    .img-card-2 {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .about-images-container {
        height: 300px;
    }
    .img-card-1 {
        height: 240px;
    }
    .img-card-2 {
        height: 200px;
    }
    .about-deco-circle {
        width: 200px;
        height: 200px;
    }
}

/* Counter Section Styles */
.bg-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.452)), url('../images/leaves-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh;
}

.counter-item {
    padding: 15px;
    transition: var(--transition-smooth);
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
    font-size: 5rem;
    line-height: 1;
}

.counter-label {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.counter-label .counter-main-lab {
    color: var(--accent-cyan);
}

.counter-label strong {
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 991.98px) {
    .bg-image {
        height: auto !important;
        padding: 60px 0;
    }
    .glass-card-new {
        border-radius: 30px;
        padding: 30px 24px;
    }
    .counter-number {
        font-size: 4rem;
    }
}

@media (max-width: 575.98px) {
    .bg-image {
        padding: 40px 0;
    }
    .glass-card-new {
        border-radius: 24px;
        padding: 24px 16px;
    }
    .counter-number {
        font-size: 3rem;
    }
    .counter-item {
        padding: 8px;
    }
}

/* Quote Section Overlapping Layout */
.quote-graphic-container {
    position: relative;
    height: 440px;
    width: 100%;
}

.quote-experience-card {
    backdrop-filter: blur(10px) !important;
    position: absolute;
    top: 25px;
    width: 290px;
    background: var(--bg-dark-card);
    border: 1.5px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.2);
    z-index: 3;
    transition: var(--transition-smooth);
}

.quote-experience-card:hover {
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple), 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.experience-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-purple);
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.4));
}

.experience-text {
    font-size: 14px;
    font-weight: 500;
}

.experience-text strong {
    color: var(--text-primary);
}

.quote-image-card {
    position: absolute;
    top: 90px;
    right: 15px;
    width: 85%;
    height: 330px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: var(--transition-smooth);
}

.quote-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-image-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(0, 242, 254, 0.25);
}

@media (max-width: 991.98px) {
    .quote-graphic-container {
        height: 380px;
        margin-top: 30px;
    }
    .quote-experience-card {
        top: 15px;
        left: 10px;
        width: 260px;
        padding: 14px 18px;
    }
    .quote-image-card {
        top: 75px;
        right: 10px;
        width: 88%;
        height: 290px;
    }
    .experience-number {
        font-size: 3rem;
    }
}

@media (max-width: 575.98px) {
    .quote-graphic-container {
        height: 300px;
    }
    .quote-experience-card {
        top: 10px;
        left: 5px;
        width: 230px;
        padding: 10px 14px;
    }
    .quote-image-card {
        top: 60px;
        right: 5px;
        width: 92%;
        height: 230px;
    }
    .experience-number {
        font-size: 2.3rem;
    }
    .experience-text {
        font-size: 12px;
    }
}

/* Category Filters for Products Page */
.category-filter-wrapper {
    backdrop-filter: blur(20px);
    background: rgba(6, 12, 32, 0.5);
    border: 1px solid rgba(0, 242, 254, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-filter {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-filter:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.btn-filter.active {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b4d8 100%);
    color: #02040e;
    box-shadow: var(--glow-cyan);
    border-color: var(--accent-cyan);
}

/* Sticky Category and Stacking Products */
.products-stack-container {
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .sticky-category-section {
        position: sticky;
        top: 0; /* Align directly at the top of viewport */
        z-index: 998;
        transition: var(--transition-smooth);
        padding: 20px 0;
        margin-bottom: 50px !important;
    }
    
    .sticky-category-section.stuck {
        background: rgba(2, 4, 14, 0);
        backdrop-filter: blur(15px);
         -webkit-backdrop-filter: blur(15px);
        padding: 12px 0;
        margin-bottom: 40px !important;
    }

    .product-section {
        position: sticky;
        top: 150px; /* Space below the sticky category filters */
        background: rgba(8, 17, 41, 0.75) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border: 1px solid rgba(0, 242, 254, 0.15) !important;
        border-radius: 28px !important;
        padding: 60px 50px !important;
        margin-bottom: 120px !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 242, 254, 0.08) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    /* Subtle hover effect on the stacked card */
    .product-section:hover {
        transform: translateY(-5px) scale(1.01);
        border-color: rgba(0, 242, 254, 0.3) !important;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 242, 254, 0.15) !important;
    }
}

/* Glass Header Scrolled state */
.glass-header.scrolled {
    margin-top: 10px !important;
    padding: 5px 24px !important;
    background: rgba(6, 12, 32, 0.85) !important;
    border-color: rgba(0, 242, 254, 0.2) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.15) !important;
}
.glass-header.scrolled .navbar-brand img {
    height: 70px !important;
}

/* Home Page Hero Video Background */
.hero-card-home {
    min-height: 720px !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    padding: 80px 60px !important;
}

@media (max-width: 768px) {
    .hero-card-home {
        min-height: 500px !important;
        padding: 40px 20px !important;
    }
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 9, 24, 0.5) 0%, rgba(2, 4, 14, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Play Button Pulse Wave Animation */
.play-pulse-btn {
    position: relative;
    z-index: 1;
}

.play-pulse-btn::before,
.play-pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    animation: playPulse 3s cubic-bezier(0.25, 0, 0, 1) infinite;
}

.play-pulse-btn::after {
    animation-delay: 15s;
}

@keyframes playPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 260%;
        height: 260%;
        opacity: 0;
    }
}

/* Overlapping Avatars & Review Section */
.review-group-container {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.review-avatars-overlap {
    display: flex;
    align-items: center;
    padding-left: 50px; /* offset first child margin negative */
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000000;
    object-fit: cover;
    border: 4px solid var(--accent-magenta);
    margin-left: -15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.review-avatar:hover {
    transform: translateY(-8px) scale(1.15) !important;
    border-color: var(--accent-cyan);
    z-index: 10;
}

/* Staggered entrance animations */
.avatar-1 {
    animation: avatarReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 0.8s;
}
.avatar-2 {
    animation: avatarReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 1.0s;
}
.avatar-3 {
    animation: avatarReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: 1.2s;
}

@keyframes avatarReveal {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 3D Interactive Tag Sphere Animation Section */
.animation-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(2, 4, 14, 0) 100%),
        radial-gradient(circle at center, rgba(8, 17, 41, 0) 0%, transparent 100%),
        linear-gradient(rgba(0, 242, 254, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.055) 1px, transparent 1px);
    background-size: 100%, 100%, 42px 42px, 42px 42px;
    background-position: center;
}

.tag-sphere-container {
    position: relative;
    width: 650px;
    height: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .tag-sphere-container {
        width: 320px;
        height: 320px;
    }
}

/* Glowing Tech Orbits */
.tech-orbit {
    position: absolute;
    border: 1.5px dashed rgba(0, 242, 254, 0.15);
    border-radius: 50%;
    pointer-events: none;
    transform-style: preserve-3d;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-orbit.reveal {
    opacity: 1;
    transform: scale(1);
}

.orbit-1 {
    width: 520px;
    height: 520px;
    animation: orbitRotate1 24s linear infinite;
    box-shadow: 0 0 25px rgba(0, 241, 254, 0.438);
}

.orbit-2 {
    width: 540px;
    height: 540px;
    animation: orbitRotate2 30s linear infinite;
    border-color: rgba(247, 37, 133, 0.15);
    box-shadow: 0 0 25px rgba(247, 37, 132, 0.199);
}

.orbit-3 {
    width: 680px;
    height: 680px;
    animation: orbitRotate3 36s linear infinite;
    border-color: rgba(157, 78, 221, 0.493);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.274);
}

@media (max-width: 768px) {
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 240px; height: 240px; }
    .orbit-3 { width: 300px; height: 300px; }
}

@keyframes orbitRotate1 {
    0% { transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg); }
    100% { transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg); }
}

@keyframes orbitRotate2 {
    0% { transform: rotateX(55deg) rotateY(-20deg) rotateZ(360deg); }
    100% { transform: rotateX(55deg) rotateY(-20deg) rotateZ(0deg); }
}

@keyframes orbitRotate3 {
    0% { transform: rotateX(75deg) rotateY(5deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateY(5deg) rotateZ(360deg); }
}

.central-globe-wrapper {
    position: absolute;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50; /* Center depth layering */
    pointer-events: none;
    opacity: 0;
    transform: scale(0.3) rotate(-45deg);
    transition: opacity 1.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
    .central-globe-wrapper {
        width: 130px;
        height: 130px;
    }
}

.central-globe-wrapper.reveal {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.central-globe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen; /* Removes black square background */
    filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.4));
    animation: globeSpin 20s linear infinite, globeBreathing 2s ease-in-out infinite alternate;
}

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

@keyframes globeBreathing {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.3));
    }
    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 45px rgba(157, 78, 221, 0.5));
    }
}

.tags-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tag-item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(4, 9, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, text-shadow 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .tag-item {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* Coloring themes for staggered index */
.tag-item:nth-child(3n+1) {
    border-color: rgba(0, 242, 254, 0.2);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
}

.tag-item:nth-child(3n+2) {
    border-color: rgba(247, 37, 133, 0.2);
    text-shadow: 0 0 8px rgba(247, 37, 133, 0.3);
}

.tag-item:nth-child(3n+3) {
    border-color: rgba(157, 78, 221, 0.2);
    text-shadow: 0 0 8px rgba(157, 78, 221, 0.3);
}

.tag-item:nth-child(3n+1):hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
    background-color: rgba(0, 242, 254, 0.1);
    text-shadow: 0 0 15px var(--accent-cyan);
}

.tag-item:nth-child(3n+2):hover {
    border-color: var(--accent-magenta);
    color: var(--accent-magenta) !important;
    background-color: rgba(247, 37, 133, 0.1);
    text-shadow: 0 0 15px var(--accent-magenta);
}

.tag-item:nth-child(3n+3):hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple) !important;
    background-color: rgba(157, 78, 221, 0.1);
    text-shadow: 0 0 15px var(--accent-purple);
}

/* Floating widgets in About Us Home section */
.floating-widget-1 {
    animation: floatAnim1 5s ease-in-out infinite alternate;
}

.floating-widget-2 {
    animation: floatAnim2 6s ease-in-out infinite alternate;
}

@keyframes floatAnim1 {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-12px) translateX(4px);
    }
}

@keyframes floatAnim2 {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(12px) translateX(-4px);
    }
}

/* How We Work Section Styling */
.step-col {
    transition: transform 0.3s ease;
}

.step-col:hover {
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .step-col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 10%;
        right: 0;
        width: 1px;
        height: 80%;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
    }
}

.step-icon-box {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-icon-box.cyan-glow {
    color: var(--accent-cyan);
    border-color: rgba(0, 242, 254, 0.15);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.step-icon-box.magenta-glow {
    color: var(--accent-magenta);
    border-color: rgba(247, 37, 133, 0.15);
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.05);
}

.step-icon-box.purple-glow {
    color: var(--accent-purple);
    border-color: rgba(157, 78, 221, 0.15);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.05);
}

.step-col:hover .step-icon-box {
    transform: translateY(-5px) scale(1.05);
}

.step-col:hover .step-icon-box.cyan-glow {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 242, 254, 0.05);
}

.step-col:hover .step-icon-box.magenta-glow {
    border-color: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
    background: rgba(247, 37, 133, 0.05);
}

.step-col:hover .step-icon-box.purple-glow {
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple);
    background: rgba(157, 78, 221, 0.05);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.05em;
}

/* Sizing and alignment for logos inside the 3D tag sphere */
.tag-image-item {
    padding: 8px 20px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.tag-image-item img {
    opacity: 1;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.tag-image-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.4));
}

@media (max-width: 768px) {
    .tag-image-item {
        padding: 5px 12px !important;
        min-height: 30px;
    }
}

/* Ticker Ribbon Section Styling */
.ticker-ribbon-section {
    position: relative;
    width: 100%;
    height: 80px;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 2px solid rgba(0, 241, 254, 0.514);
    border-bottom: 2px solid rgba(247, 37, 132, 0.418);
    background-image: 
        linear-gradient(rgba(2, 4, 14, 0.26), rgba(2, 4, 14, 0.788));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 10;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
    animation: marqueeLeftToRight 28s linear infinite;
}

.ticker-track span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.ticker-track .ticker-word-highlight {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-magenta) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.ticker-star {
    color: var(--accent-magenta);
    font-size: 16px;
    text-shadow: 0 0 10px var(--accent-magenta);
}

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

@media (max-width: 768px) {
    .ticker-ribbon-section {
        height: 54px;
        margin: 40px 0;
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
    .ticker-track {
        gap: 2rem;
        padding-right: 2rem;
        animation-duration: 20s;
    }
    .ticker-track span {
        font-size: 14px;
    }
    .ticker-star {
        font-size: 12px;
    }
}

/* Product Accordion Showcase */
.product-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.product-accordion-item {
    border-radius: 20px;
    background: rgba(4, 9, 24, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    overflow: hidden;
    position: relative;
    transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.product-accordion-item:hover {
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.product-accordion-item.active {
    background: rgba(8, 17, 41, 0.65);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 242, 254, 0.08);
}

/* Hide desktop-only layout wrappers by default on mobile */
.product-bg-image-wrapper,
.product-closed-content {
    display: none;
}

.accordion-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: margin-bottom 0.5s ease, border-bottom 0.5s ease, padding-bottom 0.5s ease;
}

.product-accordion-item.active .accordion-header-row {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.product-index {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-magenta);
    text-shadow: var(--glow-magenta);
    min-width: 35px;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.product-accordion-item.active .product-index {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    transition: color 0.3s ease;
}

.product-accordion-item:hover .product-title {
    color: var(--accent-cyan);
}

.product-accordion-item.active .product-title {
    color: #fff;
}

.accordion-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: all 0.4s ease;
}

.product-accordion-item.active .accordion-toggle-btn {
    transform: rotate(180deg);
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.accordion-body-content {
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.product-accordion-item.active .accordion-body-content {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-logo-wrapper img {
    max-height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-image-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    transition: transform 0.5s ease;
    max-width: 360px;
    margin: 20px auto 0 auto;
}

.product-accordion-item.active:hover .product-image-container {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .product-accordion-item {
        padding: 16px 20px;
    }
    .product-title {
        font-size: 18px;
    }
    .product-index {
        font-size: 16px;
        min-width: 25px;
    }
    .product-accordion-item.active .accordion-header-row {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
}

/* Premium Desktop Vertical Strip Layout */
@media (min-width: 992px) {
    .product-accordion-wrapper {
        flex-direction: row;
        height: 580px;
        gap: 1.25rem;
        align-items: stretch;
    }

    .product-accordion-item {
        flex: 1;
        min-width: 85px;
        padding: 0;
        border-radius: 24px;
        transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    }

    /* Active item by default when wrapper is not hovered */
    .product-accordion-item.active {
        flex: 5.5;
        background: rgba(8, 17, 41, 0.45);
        border-color: rgba(0, 242, 254, 0.25);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.05);
    }

    /* Shrink active item and expand hovered item when wrapper is hovered */
    .product-accordion-wrapper:hover .product-accordion-item {
        flex: 1;
        border-color: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        background: rgba(4, 9, 24, 0.45);
    }

    .product-accordion-wrapper:hover .product-accordion-item:hover {
        flex: 5.5;
        background: rgba(8, 17, 41, 0.45);
        border-color: rgba(0, 242, 254, 0.35);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 242, 254, 0.08);
    }

    /* Background image elements for vertical strip */
    .product-bg-image-wrapper {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .product-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.2;
        transition: opacity 0.6s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-accordion-item.active .product-bg-image,
    .product-accordion-item:hover .product-bg-image {
        opacity: 0.12;
        transform: scale(1.08);
    }

    .product-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(2, 4, 14, 0.25) 0%, rgba(2, 4, 14, 0.95) 100%);
    }

    /* Closed State Title & Index (Vertical strip view) */
    .product-closed-content {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 40px 10px;
        z-index: 3;
        opacity: 1;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .product-closed-content .product-index {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 0;
    }

    .product-title-vertical {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.85);
        white-space: nowrap;
        margin: 0;
        transition: color 0.3s ease;
    }

    .product-accordion-item:hover .product-title-vertical {
        color: var(--accent-cyan);
        text-shadow: var(--glow-cyan);
    }

    /* Fade-out vertical closed state header when active */
    .product-accordion-item.active .product-closed-content {
        opacity: 0;
    }

    /* Show all closed content vertical headers on wrapper hover, except on the hovered one */
    .product-accordion-wrapper:hover .product-closed-content {
        opacity: 1;
    }

    .product-accordion-wrapper:hover .product-accordion-item:hover .product-closed-content {
        opacity: 0;
    }

    /* Hide standard mobile accordion header row on desktop */
    .accordion-header-row {
        display: none;
    }

    /* Expanded Content Container (Desktop transition effects) */
    .accordion-body-content {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        max-height: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.5s ease 0.15s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
        pointer-events: none;
        z-index: 4;
        padding: 50px;
    }

    .product-accordion-item.active .accordion-body-content {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    /* When wrapper is hovered, only show the expanded content for the currently hovered item */
    .product-accordion-wrapper:hover .accordion-body-content {
        opacity: 0;
        transform: translateX(20px);
        pointer-events: none;
    }

    .product-accordion-wrapper:hover .product-accordion-item:hover .accordion-body-content {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    /* Desktop Mockup Image Styles (Lifts up on hover) */
    .product-image-container {
        margin: 0 auto;
        max-width: 420px;
        opacity: 0;
        transform: scale(0.95) translateY(10px);
        transition: opacity 0.5s ease 0.25s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s, border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .product-accordion-item.active .product-image-container {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .product-accordion-wrapper:hover .product-image-container {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    .product-accordion-wrapper:hover .product-accordion-item:hover .product-image-container {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    /* Interactive 3D Lift effect when hovering over the mockup card */
    .product-accordion-item.active .product-image-container:hover,
    .product-accordion-wrapper:hover .product-accordion-item:hover .product-image-container:hover {
        transform: scale(1.03) translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.15);
        border-color: rgba(0, 242, 254, 0.3);
    }
}

/* Solar System Orbit Styling */
.solar-system-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.solar-system-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Sun (iFlora Logo) */
.solar-sun {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(8, 17, 41, 0.85);
    border: 2px solid rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.2), inset 0 0 20px rgba(0, 242, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 105;
    animation: sunPulse 4s ease-in-out infinite;
}

.solar-sun img {
    height: 75px;
    width: auto;
}

@keyframes sunPulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(0, 242, 254, 0.4);
        box-shadow: 0 0 35px rgba(0, 242, 254, 0.2), inset 0 0 20px rgba(0, 242, 254, 0.15);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(247, 37, 133, 0.4);
        box-shadow: 0 0 45px rgba(247, 37, 133, 0.25), inset 0 0 25px rgba(247, 37, 133, 0.15);
    }
}

/* Orbit Ellipse Ring Outline */
.solar-orbit-ring {
    position: absolute;
    width: 720px;
    height: 240px; /* Represents Ry ellipse height */
    border: 1.5px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 95;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

/* Planet Spheres (Brand Logos) */
.solar-planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(8, 17, 41, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.solar-planet img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.solar-planet:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
}

.solar-planet:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .solar-system-wrapper {
        height: 280px;
        margin-top: 20px;
    }
    .solar-system-container {
        height: 240px;
    }
    .solar-sun {
        width: 90px;
        height: 90px;
    }
    .solar-sun img {
        height: 48px;
    }
    .solar-orbit-ring {
        width: 320px;
        height: 120px;
    }
    .solar-planet {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
}

/* Custom Web Software Feature Cards */
.software-feature-card {
    background: rgba(4, 9, 24, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.software-feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 24px;
    margin-bottom: 24px;
    transition: color 0.4s ease, border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Cyan Card (Normal state: Cyan, Hover state: Magenta) */
.software-feature-card.card-cyan {
    background: rgba(8, 17, 41, 0.45);
    border-color: rgba(0, 242, 254, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 242, 254, 0.05);
}
.software-feature-card.card-cyan .feature-icon-wrapper {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.08);
    box-shadow: var(--glow-cyan);
}
.software-feature-card.card-cyan:hover {
    background: rgb(8, 17, 41);
    border-color: rgba(247, 37, 133, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(247, 37, 133, 0.18);
}
.software-feature-card.card-cyan:hover .feature-icon-wrapper {
    color: var(--accent-magenta);
    border-color: var(--accent-magenta);
    background: rgba(247, 37, 133, 0.12);
    box-shadow: var(--glow-magenta);
}

/* Purple Card (Normal state: Purple, Hover state: Cyan) */
.software-feature-card.card-purple {
    background: rgba(8, 17, 41, 0.45);
    border-color: rgba(157, 78, 221, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(157, 78, 221, 0.05);
}
.software-feature-card.card-purple .feature-icon-wrapper {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
    background: rgba(157, 78, 221, 0.08);
    box-shadow: var(--glow-purple);
}
.software-feature-card.card-purple:hover {
    background: rgb(8, 17, 41);
    border-color: rgba(0, 242, 254, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 242, 254, 0.18);
}
.software-feature-card.card-purple:hover .feature-icon-wrapper {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.12);
    box-shadow: var(--glow-cyan);
}

/* Magenta Card (Normal state: Magenta, Hover state: Purple) */
.software-feature-card.card-magenta {
    background: rgba(8, 17, 41, 0.45);
    border-color: rgba(247, 37, 133, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(247, 37, 133, 0.05);
}
.software-feature-card.card-magenta .feature-icon-wrapper {
    color: var(--accent-magenta);
    border-color: var(--accent-magenta);
    background: rgba(247, 37, 133, 0.08);
    box-shadow: var(--glow-magenta);
}
.software-feature-card.card-magenta:hover {
    background: rgb(8, 17, 41);
    border-color: rgba(157, 78, 221, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(157, 78, 221, 0.18);
}
.software-feature-card.card-magenta:hover .feature-icon-wrapper {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
    background: rgba(157, 78, 221, 0.12);
    box-shadow: var(--glow-purple);
}

/* Floating Logos Container */
.floating-logos-box {
    position: relative;
    width: 100%;
    height: 380px;
    background: rgba(8, 17, 41, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
}

.floating-logo-item {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(4, 9, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-logo-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    z-index: 10;
}

.floating-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Three distinct organic floating trajectories */
.logo-float-1 {
    top: 12%;
    left: 15%;
    animation: driftOrganic1 14s ease-in-out infinite;
}

.logo-float-2 {
    bottom: 15%;
    left: 42%;
    animation: driftOrganic2 18s ease-in-out infinite;
}

.logo-float-3 {
    top: 25%;
    right: 15%;
    animation: driftOrganic3 22s ease-in-out infinite;
}

@keyframes driftOrganic1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 25px) scale(0.95);
    }
}

@keyframes driftOrganic2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(-35px, -25px) scale(0.95);
    }
    70% {
        transform: translate(25px, -50px) scale(1.05);
    }
}

@keyframes driftOrganic3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    30% {
        transform: translate(-25px, 40px) scale(1.05);
    }
    70% {
        transform: translate(40px, -20px) scale(0.95);
    }
}

@media (max-width: 768px) {
    .floating-logos-box {
        height: 280px;
    }
    .floating-logo-item {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    .logo-float-1 {
        top: 10%;
        left: 10%;
    }
    .logo-float-2 {
        bottom: 10%;
        left: 35%;
    }
    .logo-float-3 {
        top: 20%;
        right: 10%;
    }
}

/* FAQ Accordion Styling */
.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(4, 9, 24, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.04);
}

.faq-item.active {
    background: rgba(8, 17, 41, 0.65);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.05);
}

.faq-question-btn {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question-btn {
    color: var(--accent-cyan);
}

.faq-item.active .faq-question-btn {
    color: #fff;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.faq-answer-content {
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.faq-item.active .faq-answer-content {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.faq-answer-inner {
    padding: 0 28px 24px 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .faq-question-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
        font-size: 13px;
        padding-top: 12px;
    }
}

/* Product Logo Wrapper in Accordion details */
.product-logo-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.product-logo-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .product-logo-wrapper {
        height: 38px;
        margin-bottom: 1rem;
    }
}

/* Team Ticker Ribbon Section Styling */
.team-ticker-ribbon-section {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(rgba(108, 2, 237, 0.466), rgb(0, 0, 0)),
        url('../images/about_team_2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.team-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.team-ticker-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    animation: marqueeLeftToRight 24s linear infinite;
}

.team-ticker-track span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 60px;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Outline text effect */
.team-ticker-track .text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
}

.team-ticker-star {
    font-size: 60px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .team-ticker-ribbon-section {
        height: 70px;
        margin-top: 40px;
        margin-bottom: 40px;
        background-attachment: scroll;
    }
    .team-ticker-track {
        gap: 2.5rem;
        padding-right: 2.5rem;
    }
    .team-ticker-track span {
        font-size: 18px;
    }
    .team-ticker-track .text-outline {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95);
    }
    .team-ticker-star {
        font-size: 18px;
    }
}

/* Contact Consultation Popup Modal Styles */
.contact-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 16, 37, 0.103);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 15px;
}

.contact-popup-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.contact-popup-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(8, 17, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 254, 0.05);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-popup-backdrop.show .contact-popup-card {
    transform: scale(1);
}

/* Close Button Styling */
.contact-popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-popup-close-btn:hover {
    background: rgba(247, 37, 133, 0.1);
    border-color: var(--accent-magenta);
    color: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
    transform: rotate(90deg);
}

/* Form input fields inside popup */
.popup-form-input {
    background: rgba(4, 9, 24, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.popup-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.popup-form-input:focus {
    background: rgba(8, 17, 41, 0.8) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15) !important;
}

/* Graphic side styling */
.popup-graphic-col {
    background: #02040e;
    overflow: hidden;
}

.popup-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-graphic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 17, 41, 0.85) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .contact-popup-card {
        max-width: 550px;
    }
}

/* Floating WhatsApp Sticky Button */
.whatsapp-sticky-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.18);
    border: 1.5px solid rgba(37, 211, 102, 0.35);
    border-right: none;
    border-radius: 16px 0 0 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 28px;
    text-decoration: none;
    z-index: 9990;
    box-shadow: -4px 0 20px rgba(37, 211, 102, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: stickyAttention 5s ease-in-out infinite;
}

.whatsapp-sticky-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.whatsapp-sticky-btn:hover {
    background: rgba(37, 211, 102, 0.3);
    border-color: rgba(37, 211, 102, 0.6);
    color: #25D366;
    box-shadow: -4px 0 25px rgba(37, 211, 102, 0.35), 0 0 15px rgba(37, 211, 102, 0.2);
    animation-play-state: paused; /* Pause shake on user hover */
}

@keyframes stickyAttention {
    0%, 75%, 100% {
        transform: translateY(-50%) translateX(0) rotate(0);
    }
    78% {
        transform: translateY(-50%) translateX(-8px) rotate(-6deg);
    }
    81% {
        transform: translateY(-50%) translateX(-14px) rotate(6deg);
    }
    84% {
        transform: translateY(-50%) translateX(-8px) rotate(-6deg);
    }
    87% {
        transform: translateY(-50%) translateX(-14px) rotate(6deg);
    }
    90% {
        transform: translateY(-50%) translateX(-4px) rotate(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        border-radius: 12px 0 0 12px;
    }
}

/* Back to Top Button Styling */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(8, 17, 41, 0.75);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9990;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 254, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.back-to-top-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ==========================================
   Career Page specific styles
   ========================================== */

/* Department Headers */
.career-dept-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.career-dept-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    border-radius: 2px;
}

.dept-it::before {
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.dept-mkt::before {
    background: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
}

/* Career Cards Grid */
.job-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: var(--transition-smooth);
    opacity: 0;
}

.job-card.it-job::before {
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.08), transparent 50%);
}

.job-card.mkt-job::before {
    background: radial-gradient(circle at top right, rgba(247, 37, 133, 0.08), transparent 50%);
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
}

.job-card.it-job:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 254, 0.15);
}

.job-card.mkt-job:hover {
    border-color: rgba(247, 37, 133, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(247, 37, 133, 0.15);
}

.job-card:hover::before {
    opacity: 1;
}

/* Job Icon */
.job-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.it-job .job-icon-box {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
}

.mkt-job .job-icon-box {
    background: rgba(247, 37, 133, 0.1);
    border: 1px solid rgba(247, 37, 133, 0.2);
    color: var(--accent-magenta);
}

.job-card.it-job:hover .job-icon-box {
    background: var(--accent-cyan);
    color: #02040e;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-cyan);
}

.job-card.mkt-job:hover .job-icon-box {
    background: var(--accent-magenta);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-magenta);
}

/* Job Title & Info */
.job-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.job-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.it-job .job-tag.tag-highlight {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
}

.mkt-job .job-tag.tag-highlight {
    background: rgba(247, 37, 133, 0.08);
    border-color: rgba(247, 37, 133, 0.2);
    color: var(--accent-magenta);
}

.job-desc {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Job CTA Button */
.btn-job-apply {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    width: 100%;
    margin-top: auto;
}

.job-card.it-job:hover .btn-job-apply {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b4d8 100%);
    color: #02040e;
    border-color: transparent;
    box-shadow: var(--glow-cyan);
}

.job-card.mkt-job:hover .btn-job-apply {
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-purple) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-magenta);
}

/* Application Form Custom Styles */
.apply-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.apply-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.apply-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    border: 1.5px solid var(--accent-purple);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: var(--glow-purple);
}

.apply-step-content h5 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.apply-step-content p {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Select Form Dropdown styling */
select.form-control-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300f2fe' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 12px;
    padding-right: 45px;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

select.form-control-custom:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239d4edd' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

select.form-control-custom option {
    background-color: #050b1e;
    color: var(--text-primary);
}

select.form-control-custom optgroup {
    background-color: #030612;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Float label override specifically for select */
select.form-control-custom ~ .form-label-custom {
    top: 0 !important;
    transform: translateY(-50%) scale(0.85) !important;
    left: 15px !important;
    padding: 0 8px !important;
    background: #050b1e !important;
    color: var(--accent-cyan) !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
}

/* ==========================================
   Hiring Process Timeline Styles
   ========================================== */

.hiring-timeline-container {
    position: relative;
    padding-top: 80px;
    width: 100%;
}

.hiring-timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* SVG Wavy Line (Desktop only) */
.hiring-path-svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hiring-path-bg {
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 4px;
    fill: none;
    stroke-linecap: round;
}

.hiring-path-active {
    stroke: url(#timeline-gradient);
    stroke-width: 4px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.3));
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    transition: stroke-dashoffset 3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hiring-timeline-container.active .hiring-path-active {
    stroke-dashoffset: 0;
}

/* Timeline Rows & Layout */
.timeline-row {
    display: flex;
    position: relative;
    width: 100%;
    height: 200px;
    align-items: center;
    z-index: 2;
}

.timeline-card-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.timeline-empty-wrapper {
    width: 50%;
}

/* Odd steps (Left side) */
.timeline-row.left-step {
    flex-direction: row;
}

.timeline-row.left-step .timeline-card-wrapper {
    justify-content: flex-end;
    padding-right: 120px;
}

.timeline-row.left-step .timeline-node {
    left: calc(50% - 70px);
}

/* Even steps (Right side) */
.timeline-row.right-step {
    flex-direction: row-reverse;
}

.timeline-row.right-step .timeline-card-wrapper {
    justify-content: flex-start;
    padding-left: 120px;
}

.timeline-row.right-step .timeline-node {
    left: calc(50% + 70px);
}

/* Timeline Cards */
.timeline-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card-step {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    display: inline-block;
}

.timeline-row.left-step .timeline-card-step {
    color: var(--accent-cyan);
}

.timeline-row.right-step .timeline-card-step {
    color: var(--accent-magenta);
}

.timeline-card-title {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-card-desc {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Timeline Nodes (Connecting Circles) */
.timeline-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #02040e;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Scroll Active State Triggers */
.hiring-timeline-container.active .timeline-card {
    opacity: 1;
    transform: translateY(0);
}

.hiring-timeline-container.active .timeline-node {
    transform: translate(-50%, -50%) scale(1.25);
    background: #02040e;
}

/* Staggered Delay for Node Activation */
.hiring-timeline-container.active .timeline-row:nth-child(1) .timeline-node { transition-delay: 0.2s; }
.hiring-timeline-container.active .timeline-row:nth-child(2) .timeline-node { transition-delay: 0.6s; }
.hiring-timeline-container.active .timeline-row:nth-child(3) .timeline-node { transition-delay: 1.0s; }
.hiring-timeline-container.active .timeline-row:nth-child(4) .timeline-node { transition-delay: 1.4s; }
.hiring-timeline-container.active .timeline-row:nth-child(5) .timeline-node { transition-delay: 1.8s; }
.hiring-timeline-container.active .timeline-row:nth-child(6) .timeline-node { transition-delay: 2.2s; }

/* Staggered Delay for Card Activation */
.hiring-timeline-container.active .timeline-row:nth-child(1) .timeline-card { transition-delay: 0.4s; }
.hiring-timeline-container.active .timeline-row:nth-child(2) .timeline-card { transition-delay: 0.8s; }
.hiring-timeline-container.active .timeline-row:nth-child(3) .timeline-card { transition-delay: 1.2s; }
.hiring-timeline-container.active .timeline-row:nth-child(4) .timeline-card { transition-delay: 1.6s; }
.hiring-timeline-container.active .timeline-row:nth-child(5) .timeline-card { transition-delay: 2.0s; }
.hiring-timeline-container.active .timeline-row:nth-child(6) .timeline-card { transition-delay: 2.4s; }

/* Individual Active Node Accents */
.hiring-timeline-container.active .timeline-row.left-step .timeline-node {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan);
}
.hiring-timeline-container.active .timeline-row.left-step .timeline-node::after {
    background: var(--accent-cyan);
}

.hiring-timeline-container.active .timeline-row.right-step .timeline-node {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 12px var(--accent-magenta);
}
.hiring-timeline-container.active .timeline-row.right-step .timeline-node::after {
    background: var(--accent-magenta);
}

/* Card Hover Lifts & Shadows */
.timeline-card:hover {
    border-color: var(--glass-border-hover);
}

.timeline-row.left-step .timeline-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.4), -4px 4px 10px rgba(0, 242, 254, 0.1);
}

.timeline-row.right-step .timeline-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.4), 4px 4px 10px rgba(247, 37, 133, 0.1);
}

/* Mobile responsive line (Cascading vertical height draw) */
.hiring-timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1px;
    z-index: 1;
    display: none;
}

.hiring-timeline-container::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    height: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-magenta));
    border-radius: 1px;
    z-index: 1;
    transition: height 2.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: none;
}

.hiring-timeline-container.active::after {
    height: calc(100% - 120px);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .hiring-path-svg {
        display: none !important;
    }
    
    .hiring-timeline-container::before,
    .hiring-timeline-container::after {
        display: block;
    }
    
    .hiring-timeline-wrapper {
        padding-left: 40px;
    }
    
    .timeline-row {
        flex-direction: column !important;
        height: auto !important;
        margin-bottom: 40px;
        align-items: flex-start;
    }
    
    .timeline-card-wrapper,
    .timeline-empty-wrapper {
        width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }
    
    .timeline-empty-wrapper {
        display: none !important;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .timeline-row.left-step .timeline-card {
        transform: translateY(20px);
    }
    
    .timeline-row.right-step .timeline-card {
        transform: translateY(20px);
    }
    
    /* Center node in line on the left side */
    .timeline-node {
        left: 20px !important;
        top: 30px !important; /* Positions next to card header */
    }
}

/* ==========================================
   Life at Iflora Image Gallery with Thumbnails
   ========================================== */

.life-gallery-main {
    position: relative;
    height: 450px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    border: 1px solid var(--glass-border);
    background: var(--bg-dark-card);
    perspective: 1200px;
}

.life-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.thumb-item {
    width: 95px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    background: var(--bg-dark-card);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.thumb-item:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.thumb-item.active {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .life-gallery-main {
        height: 320px;
    }
    .thumb-item {
        width: 75px;
        height: 52px;
        border-radius: 8px;
    }
}

/* 3D Temporary Image slide-down-left animation style */
.gallery-temp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
}

.gallery-temp-img.slide-down-left {
    transform: translate3d(-110%, 110%, 0) rotate(-25deg) scale(0.9) !important;
    opacity: 0 !important;
}

/* Open Positions Infinite Carousel Styling */

.career-carousel-outer {
    position: relative;
    width: 100%;
}

.career-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 25px 0;
}

.career-carousel {
    width: 100%;
    overflow: hidden;
}

.career-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.career-carousel-track .job-card {
    width: 420px;
    flex-shrink: 0;
    margin: 0;
}

.carousel-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-control-btn.absolute-left {
    position: absolute;
    left: -22px;
    top: calc(50% - 35px);
    z-index: 10;
}

.carousel-control-btn.absolute-right {
    position: absolute;
    right: -22px;
    top: calc(50% - 35px);
    z-index: 10;
}

.carousel-control-btn:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px) scale(1.05);
}

.mkt-controls .carousel-control-btn:hover {
    background: var(--accent-magenta);
    border-color: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
}

@media (max-width: 992px) {
    .carousel-control-btn.absolute-left {
        left: -10px;
    }
    .carousel-control-btn.absolute-right {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .career-carousel-track {
        gap: 16px;
    }
    .career-carousel-track .job-card {
        width: 300px;
    }
    .carousel-control-btn.absolute-left,
    .carousel-control-btn.absolute-right {
        display: none !important;
    }
}
/* Creative Service Card Styling */
.creative-service-card {
    position: relative;
    background: rgba(6, 12, 32, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Background gradient spot that appears on hover */
.creative-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.creative-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--card-accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 25px var(--card-glow);
}

.creative-service-card:hover::before {
    opacity: 0.25;
}

/* Floating Icon Frame with rotation and shadow */
.floating-icon-frame {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-accent);
    font-size: 26px;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.creative-service-card:hover .floating-icon-frame {
    background: var(--card-accent);
    color: #02040e !important;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 25px var(--card-glow);
}

/* Title transition */
.creative-service-card .card-title {
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.creative-service-card:hover .card-title {
    color: var(--card-accent);
    text-shadow: 0 0 10px var(--card-glow);
}

/* Card description */
.creative-service-card .card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Arrow indicator inside button */
.creative-service-card .btn-phone-glow {
    align-self: start;
    margin-top: auto;
}

/* Creative link underlines */
.creative-view-all {
    position: relative;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 4px;
}
.creative-view-all::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
}
.creative-view-all:hover::after {
    width: 100%;
}

/* Custom Software Banner styling upgrade */
.creative-banner-card {
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 254, 0.15);
    background: linear-gradient(135deg, rgba(8, 17, 41, 0.75) 0%, rgba(3, 6, 18, 0.95) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: all 0.4s ease;
}

.creative-banner-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15);
}

.creative-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 242, 254, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    z-index: -1;
}

/* Glassmorphism gradient rings for decorative background */
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.deco-ring-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.04) 0%, transparent 70%);
}

.deco-ring-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.04) 0%, transparent 70%);
}

/* Reveal on Scroll Animation System */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

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

/* Card Dotted Pattern Styling */
.creative-service-card .card-dotted-pattern {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: auto;
    opacity: 0.30;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: rotateDotted 25s linear infinite;
}

/* Hover effect on card: dotted pattern fades, shrinks and rotates */
.creative-service-card:hover .card-dotted-pattern {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

@keyframes rotateDotted {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 3D Curved Carousel Styles for Portfolio */
.portfolio-3d-carousel-container {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 50px auto;
    overflow: hidden;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.portfolio-3d-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.portfolio-3d-card {
    position: absolute;
    width: 310px;
    height: 380px;
    left: 50%;
    top: 50%;
    margin-left: -155px; /* Center horizontally */
    margin-top: -190px;  /* Center vertically */
    transform-style: preserve-3d;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.portfolio-3d-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(6, 13, 32, 0.747);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.226);
    border-radius: 28px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.portfolio-3d-card:hover .portfolio-3d-card-inner {
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px var(--glow);
    transform: translateY(-5px);
}

/* Icon Frame inside Portfolio 3D Card */
.portfolio-3d-card-inner .floating-icon-frame {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.portfolio-3d-card:hover .floating-icon-frame {
    background: var(--accent);
    color: #02040e !important;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px var(--glow);
}

/* Titles and Descs inside Portfolio 3D Card */
.portfolio-3d-card-inner .card-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-3d-card-inner .card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* CTA inside Portfolio 3D Card */
.portfolio-3d-cta {
    align-self: start;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}
.portfolio-3d-cta i {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.portfolio-3d-card:hover .portfolio-3d-cta i {
    transform: translateX(4px);
}

/* Dotted Pattern inside Portfolio 3D Card */
.portfolio-3d-card .card-dotted-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: auto;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: rotateDotted 25s linear infinite;
    filter: grayscale(100%);
}

.portfolio-3d-card:hover .card-dotted-pattern {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

/* 3D Carousel Controls & Slider Styling */
.portfolio-3d-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    z-index: 10;
    position: relative;
}

.portfolio-3d-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom styled Range Input */
.portfolio-3d-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Chrome/Safari styles */
.portfolio-3d-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 4px;
    border: none;
}

.portfolio-3d-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.85);
    margin-top: -7px; /* Center thumb vertically */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.portfolio-3d-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 0 22px rgba(0, 242, 254, 1);
}

/* Firefox styles */
.portfolio-3d-slider::-moz-range-track {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 4px;
    border: none;
}

.portfolio-3d-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.85);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    cursor: pointer;
}

.portfolio-3d-slider::-moz-range-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 0 22px rgba(0, 242, 254, 1);
}

/* Nav Buttons (prev/next) styling */
.portfolio-3d-nav-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.portfolio-3d-nav-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.portfolio-3d-nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: scale(1.08);
}

#prevBtn:hover i {
    transform: translateX(-2px);
}

#nextBtn:hover i {
    transform: translateX(2px);
}

/* --- Branding Showcase Section CSS --- */

.branding-showcase-title {
    font-size: 2.5rem;
}

/* Right side Image Frame */
.branding-interactive-frame {
    height: 550px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Deco Ring */
.deco-ring {
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(0, 242, 254, 0.15);
    border-radius: 50%;
    animation: rotateDecoRing 40s linear infinite;
    position: absolute;
    z-index: 1;
}

@keyframes rotateDecoRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Deco Dots */
.deco-dots {
    width: 250px;
    height: 250px;
    background-image: radial-gradient(rgba(157, 78, 221, 0.2) 2px, transparent 2px);
    background-size: 15px 15px;
    position: absolute;
    top: 15%;
    left: 10%;
    opacity: 0.5;
    z-index: 1;
    animation: floatDeco 8s ease-in-out infinite alternate;
}

@keyframes floatDeco {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-15px) scale(1.05); }
}

/* Brand Image Cards */
.brand-img-card {
    position: absolute;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.brand-img-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-img-card:hover img {
    transform: scale(1.04);
}

/* Main Card positioning */
.brand-img-card.main-card {
    width: 360px;
    z-index: 5;
    transform: translate(-80px, -35px) rotate(-3deg);
    animation: floatMainCard 6s ease-in-out infinite alternate;
}

.brand-img-card.main-card:hover {
    z-index: 10;
    transform: translate(-80px, -35px) rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.25), var(--glow-cyan);
    border-color: rgba(0, 242, 254, 0.4);
}

@keyframes floatMainCard {
    0% { transform: translate(-80px, -35px) rotate(-3deg); }
    100% { transform: translate(-80px, -50px) rotate(-1deg); }
}

/* Secondary Card positioning */
.brand-img-card.secondary-card {
    width: 310px;
    z-index: 3;
    transform: translate(80px, 45px) rotate(4deg);
    animation: floatSecCard 6s ease-in-out infinite alternate-reverse;
}

.brand-img-card.secondary-card:hover {
    z-index: 10;
    transform: translate(80px, 45px) rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(157, 78, 221, 0.25), var(--glow-purple);
    border-color: rgba(157, 78, 221, 0.4);
}

@keyframes floatSecCard {
    0% { transform: translate(80px, 45px) rotate(4deg); }
    100% { transform: translate(80px, 30px) rotate(2deg); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 8;
    background: rgba(6, 12, 32, 0.8) !important;
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-top-left {
    top: 15%;
    left: -5%;
    animation: floatBadge1 5s ease-in-out infinite alternate;
}

.badge-bottom-right {
    bottom: 12%;
    right: -2%;
    animation: floatBadge2 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatBadge1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes floatBadge2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.badge-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-cyan-glow {
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.bg-purple-glow {
    background: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

.badge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Glass glare effect */
.glass-glare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 2;
}

.brand-img-card:hover .glass-glare {
    left: 150%;
    transition: 1s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .branding-showcase-title {
        font-size: 2.1rem;
    }
    .branding-interactive-frame {
        height: 500px;
        margin-top: 40px;
    }
    .brand-img-card.main-card {
        width: 280px;
        transform: translate(-60px, -25px) rotate(-3deg);
    }
    .brand-img-card.secondary-card {
        width: 240px;
        transform: translate(60px, 35px) rotate(4deg);
    }
    @keyframes floatMainCard {
        0% { transform: translate(-60px, -25px) rotate(-3deg); }
        100% { transform: translate(-60px, -40px) rotate(-1deg); }
    }
    @keyframes floatSecCard {
        0% { transform: translate(60px, 35px) rotate(4deg); }
        100% { transform: translate(60px, 20px) rotate(2deg); }
    }
    .badge-top-left {
        left: 2%;
        top: 10%;
    }
    .badge-bottom-right {
        right: 2%;
        bottom: 10%;
    }
}
@media (max-width: 575.98px) {
    .branding-showcase-title ~ h4,
    .branding-showcase-title ~ p {
        text-align: left !important;
    }
    .branding-showcase-title {
        font-size: 1.8rem;
    }
    .branding-interactive-frame {
        height: 360px;
        margin-top: 30px;
    }
    .deco-ring {
        width: 260px;
        height: 260px;
    }
    .deco-dots {
        width: 180px;
        height: 180px;
        top: 20%;
        left: 15%;
    }
    .brand-img-card.main-card {
        width: 190px;
        transform: translate(-35px, -15px) rotate(-2deg);
    }
    .brand-img-card.secondary-card {
        width: 160px;
        transform: translate(35px, 20px) rotate(3deg);
    }
    @keyframes floatMainCard {
        0% { transform: translate(-35px, -15px) rotate(-2deg); }
        100% { transform: translate(-35px, -25px) rotate(0deg); }
    }
    @keyframes floatSecCard {
        0% { transform: translate(35px, 20px) rotate(3deg); }
        100% { transform: translate(35px, 10px) rotate(1deg); }
    }
    .floating-badge {
        padding: 8px 12px !important;
        border-radius: 12px;
    }
    .badge-top-left {
        left: 10px;
        top: 15%;
    }
    .badge-bottom-right {
        right: 10px;
        bottom: 15%;
    }
    .badge-icon-box {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .badge-title {
        font-size: 0.8rem;
    }
    .badge-subtitle {
        font-size: 0.65rem;
    }
}

/* Marketplace interactive card styles */
.marketplace-interactive-card {
    width: 440px;
    max-width: 90%;
    transform: translate(30px, -20px) rotate(2deg);
    animation: floatMarketCard 6s ease-in-out infinite alternate;
}

@keyframes floatMarketCard {
    0% { transform: translate(30px, -15px) rotate(1deg); }
    100% { transform: translate(30px, -30px) rotate(3deg); }
}

@media (max-width: 991.98px) {
    .marketplace-interactive-card {
        width: 380px;
        max-width: 95%;
        transform: translate(0px, 0px) rotate(0deg) !important;
        animation: floatMarketCardMobile 6s ease-in-out infinite alternate !important;
    }
    @keyframes floatMarketCardMobile {
        0% { transform: translateY(0px); }
        100% { transform: translateY(-10px); }
    }
}

/* Creative Banner Card Styling */
.creative-banner-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Product Photography Horizontal Accordion Slider */
.product-gallery-container {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 480px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-gallery-item {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
                filter 0.4s ease, 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
    filter: brightness(0.65) saturate(0.8);
}

.product-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Expanded active state */
.product-gallery-item.active {
    flex: 3.5;
    filter: brightness(1.1) saturate(1);
}

.product-gallery-item.active::after {
    opacity: 0.2;
}

@media (max-width: 767.98px) {
    .product-gallery-container {
        flex-direction: column;
        height: 650px;
    }
    
    .product-gallery-item {
        width: 100%;
        flex: 1;
        transition: flex 0.5s ease;
    }
    
    .product-gallery-item.active {
        flex: 3;
    }
}

/* 3D Curved Concave Stage Carousel */
:root {
    --ring-radius: 920px;
}

@media (max-width: 991px) {
    :root {
        --ring-radius: 720px;
    }
}

@media (max-width: 768px) {
    :root {
        --ring-radius: 500px;
    }
}

.ring-carousel-section {
    padding: 100px 0;
    overflow: hidden;
    background: #02040e;
    position: relative;
}

/* Curved overlays on top and bottom to frame the 3D cylinder (creates the curved path look) */
.ring-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: radial-gradient(ellipse at top, transparent 50%, #02040e 80%);
    z-index: 10;
    pointer-events: none;
}

.ring-carousel-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: radial-gradient(ellipse at bottom, transparent 50%, #02040e 80%);
    z-index: 10;
    pointer-events: none;
}

.stage-3d {
    perspective: 1500px;
    perspective-origin: 50% 25%; /* Look slightly down into the curve */
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

.track-3d {
    position: relative;
    width: 290px;
    height: 360px;
    transform-style: preserve-3d;
    will-change: transform;
}

.card-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    height: 360px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* positioned facing the center of the ring, creating a concave circle path curving away from us */
    transform: rotateY(calc(360deg / var(--total) * var(--index))) translateZ(var(--ring-radius)) rotateY(180deg);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.card-3d:hover {
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.45));
}

/* Glass Card styling matched to the dark premium theme */
.client-theme-card {
    width: 100%;
    height: 100%;
    background: rgba(8, 17, 41, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(0, 242, 254, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.client-logo-wrapper {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.2) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.client-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.client-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.4;
    height: 54px;
}

.client-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--accent-cyan) !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    margin-top: auto;
    font-size: 13.5px;
}

.client-link i {
    font-size: 13.5px;
    color: var(--accent-cyan) !important;
    transition: transform 0.3s ease;
}

/* Media Queries for Responsive 3D sizing */
@media (max-width: 991px) {
    .stage-3d {
        height: 480px;
    }
    .track-3d, .card-3d {
        width: 240px;
        height: 320px;
    }
    .client-logo-wrapper {
        height: 90px;
    }
    .client-desc {
        font-size: 12px;
        height: 50px;
    }
    .client-link {
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .stage-3d {
        height: 380px;
    }
    .track-3d, .card-3d {
        width: 180px;
        height: 260px;
    }
    .client-theme-card {
        padding: 12px 14px;
        border-radius: 14px;
    }
    .client-logo-wrapper {
        height: 60px;
    }
    .client-info {
        gap: 6px;
    }
    .client-desc {
        font-size: 11px;
        line-height: 1.3;
        height: 44px;
    }
    .client-link {
        font-size: 12px;
    }
    .client-link i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stage-3d {
        height: 330px;
    }
    .track-3d, .card-3d {
        width: 150px;
        height: 220px;
    }
    .client-theme-card {
        padding: 10px 12px;
        border-radius: 12px;
    }
    .client-logo-wrapper {
        height: 50px;
    }
    .client-desc {
        font-size: 10px;
        line-height: 1.2;
        height: 36px;
    }
    .client-link {
        font-size: 11px;
    }
    .client-link i {
        font-size: 11px;
    }
}

.card-3d:hover .client-theme-card {
    border-color: rgba(0, 242, 254, 0.7);
    background: rgba(8, 17, 41, 0.9) !important;
    transform: translateZ(10px);
}

.card-3d:hover .client-theme-card img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.2);
}

.card-3d:hover .client-link {
    color: var(--accent-magenta) !important;
}

.card-3d:hover .client-link i {
    color: var(--accent-magenta) !important;
    transform: translate(2px, -2px);
}

/* Slider Controls Styles */
.slider-control-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding: 10px 20px;
    background: rgba(8, 17, 41, 0.6);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.custom-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.custom-range-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-cyan);
    border: 2px solid #02040e;
    box-shadow: 0 0 10px var(--accent-cyan);
    margin-top: -7px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-magenta);
    box-shadow: 0 0 12px var(--accent-magenta);
}

.custom-range-slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.custom-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-cyan);
    border: 2px solid #02040e;
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.custom-range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-magenta);
    box-shadow: 0 0 12px var(--accent-magenta);
}

/* Detailed Product Showcase Styling */
.product-detail-item {
    margin-bottom: 120px;
    padding-top: 50px;
    scroll-margin-top: 120px;
}

.product-detail-item:last-child {
    margin-bottom: 50px;
}

.product-mockup-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-mockup-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color, rgba(255, 255, 255, 0.15));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15);
}

.product-mockup-wrapper img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-feature-list {
    list-style: none;
    padding-left: 0;
}

.product-feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.product-feature-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Premium Product Dividers */
.product-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 15%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.08) 85%, transparent);
    border: none;
    margin: 90px 0 !important;
    overflow: visible;
}