/* ===================================
   LinkBoostify - Zyniq Media Style
   Orange & Navy Design System
   =================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Colors - Orange Theme */
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C42;

    /* Secondary Colors */
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --secondary-color: #f5576c;

    /* Accent Colors */
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --accent-color: #4facfe;

    /* Success Gradient */
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);

    /* Neutral Colors - Navy Dark Theme */
    --dark-bg: #1a1d3f;
    --dark-card: #232749;
    --dark-hover: #2d3159;
    --text-primary: #ffffff;
    --text-secondary: #b8bdd9;
    --text-muted: #8a8fb5;

    /* Light Theme */
    --light-bg: #f8f9ff;
    --light-card: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);

    /* Typography - Optimized font weights (400, 600, 700 only) */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-xxl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    overflow-x: hidden;
    /* Fix horizontal scroll causing side scroll on page load */
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: var(--line-height-base);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 29, 63, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(26, 29, 63, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--dark-hover);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FF6B35;
    /* Orange to pop */
    font-size: 32px;
    /* Bigger */
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 5px;
    /* Increase touch target */
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* ===================================
   Scroll Reveal Animation
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for child elements */
.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

.reveal-delay-4 {
    transition-delay: 0.8s;
}

.reveal-delay-5 {
    transition-delay: 1.0s;
}

.reveal-delay-6 {
    transition-delay: 1.2s;
}

/* Robust Slide Reveal (Replace Wipe) */
.reveal-wipe {
    opacity: 0;
    transform: translateX(-50px);
    /* Start slightly left */
    transition: all 1.2s ease-out;
    /* Smooth duration */
    clip-path: none !important;
    /* Ensure no clipping */
}

.reveal-wipe.active {
    opacity: 1;
    transform: translateX(0);
    /* Move to original position */
}

/* Word-by-Word Typing Reveal Animation */
.word-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
    margin-right: 0.25em;
    /* Space between words */
}

.type-reveal.active .word-span {
    opacity: 1;
    transform: translateY(0);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #FF6B35;
    transition: opacity 0.3s ease;
}

.cursor-outline {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 107, 53, 0.5);
    /* Hidden by default */
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s;
}

/* Hover Zoom Effect */
body.hovering .cursor-outline {
    /* Show and Scale Up on hover */
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    /* Removed scale increase */
    /* Make it large */
    width: 40px;
    /* Smaller fixed size */
    height: 40px;
    background-color: #fff;
    /* Solid white for maximum difference contrast */
    border-color: transparent;
    mix-blend-mode: difference;
    /* This inverts the text color */
}

body.hovering .cursor-dot {
    opacity: 0;
    /* Hide dot when circle appears */
}

/* Hide default cursor on interactive elements */
a,
button,
input,
textarea,
.hover-target {
    cursor: none;
}

body {
    cursor: none;
    /* Hide default cursor everywhere if desired, or just on specific areas */
}

@media (max-width: 992px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
        /* Hide custom cursor on touch devices */
    }

    body,
    a,
    button,
    input,
    textarea {
        cursor: auto;
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--dark-bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.text-orange {
    color: var(--primary-color);
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    max-width: 540px;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-character {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: rgba(35, 39, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    font-size: 24px;
}

.hero-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.hero-badge span {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

.btn-white {
    background: var(--text-primary);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===================================
   About Us Intro Section
   =================================== */

.about-intro-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark-bg);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.team-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-intro-content {
    padding-left: var(--spacing-lg);
}

.about-intro-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

/* Premium About Text Card */
.about-intro-text {
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid #FF6B35;
    /* Strong Orange Accent */
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-intro-text:hover {
    background: #FF6B35;
    /* Orange Fill */
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.about-intro-text p {
    color: #B8BDD9;
    /* Soft secondary text */
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    /* Removed old border-left as the card has it now */
    padding-left: 0;
    transition: color 0.3s ease;
}

/* Change text color on card hover for readability */
.about-intro-text:hover p {
    color: #0B0E23;
    /* Dark Navy for sharp contrast on Orange */
    font-weight: 500;
}

/* If there's bold text, ensure it stays dark/visible */
.about-intro-text:hover strong,
.about-intro-text:hover b {
    color: #000;
}

/* New Premium Pill Button */
.btn-glow-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #FF6B35;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.btn-glow-pill i {
    background: #fff;
    color: #FF6B35;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-glow-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    background: #ff5514;
}

.btn-glow-pill:hover i {
    transform: rotate(-45deg);
    /* Arrow tilt effect to match uploaded img style if applicable, or generic forward */
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: 25px 20px;
    /* Reduced padding */
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    /* Reduced from 80 */
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    font-size: 20px;
    /* Reduced from 32 */
    color: #FF6B35;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    background: #FF6B35;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 36px;
    /* Reduced from 56 */
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #fff, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    /* Reduced from 18 */
    color: #A0A0C0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ===================================
   Section Styles
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

/* ===================================
   About Section
   =================================== */

.about-section {
    padding: var(--spacing-xxl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.about-card {
    padding: var(--spacing-lg);
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.about-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    font-size: 24px;
    margin-bottom: var(--spacing-md);
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Services Section
   =================================== */

/* ===================================
   Feature Circle Section
   =================================== */

.feature-circle-section {
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    background: #0B0E23;
}

.feature-circle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
    z-index: 2;
}

.feature-block {
    position: relative;
}

.feature-block:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    bottom: -20px;
    left: 0;
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-title i {
    font-size: 20px;
    color: #FF6B35;
}

.feature-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-block p {
    color: #A0A0C0;
    line-height: 1.6;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
    margin-left: 9px;
    font-size: 15px;
}

/* Center Visual */
.feature-center-visual {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image-container {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #11142B;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.feature-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Orbit Circles */
.pulse-circle-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pulse-circle-2 {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

/* Orbiting Icons */
.orbit-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #161A36;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    z-index: 5;
}

.orbit-icon:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    transform: scale(1.1);
    cursor: pointer;
}

/* Positioning Icons on Circle */
.icon-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-2 {
    top: 100px;
    right: 40px;
}

.icon-3 {
    bottom: 100px;
    right: 40px;
}

.icon-4 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-5 {
    bottom: 100px;
    left: 40px;
}

.icon-6 {
    top: 100px;
    left: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-circle-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .feature-column {
        width: 100%;
        gap: 40px;
    }

    .feature-center-visual {
        order: -1;
        /* Image on top mobile */
        width: 350px;
        height: 350px;
    }

    .pulse-circle-1 {
        width: 350px;
        height: 350px;
    }

    .pulse-circle-2 {
        width: 280px;
        height: 280px;
    }

    .center-image-container {
        width: 200px;
        height: 200px;
    }

    /* Adjust icon positions for smaller circle */
    .icon-2 {
        top: 60px;
        right: 20px;
    }

    .icon-3 {
        bottom: 60px;
        right: 20px;
    }

    .icon-5 {
        bottom: 60px;
        left: 20px;
    }

    .icon-6 {
        top: 60px;
        left: 20px;
    }
}

/* ===================================
   Services Section (New Layout)
   =================================== */

.services-section {
    padding: var(--spacing-xxl) 0;
    background: #0B0E23;
    /* Deep dark navy background */
}

.section-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.section-tag-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF6B35;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.btn-dark-pill {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-dark-pill i {
    background: #FF6B35;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-dark-pill:hover {
    background: rgba(255, 255, 255, 0.2);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

/* Left Column - Images */
.services-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-img-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 480px;
}

.service-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-img-card:hover img {
    transform: scale(1.05);
}

.top-img {
    height: 400px;
}

.bottom-img {
    height: 400px;
}

/* Right Column - Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Modern Service Card Hover Effects */
.service-process-card {
    background: #11142B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy feel */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    overflow: hidden;
    /* For shine effect */
}

/* Glass shine effect on hover */
.service-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.service-process-card:hover::before {
    left: 100%;
}

.service-process-card:hover {
    border-color: #FF6B35;
    background: #161A36;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-box {
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon-box i {
    font-size: 32px;
    color: #FF6B35;
    transition: all 0.4s ease;
}

/* Icon Animation on Hover */
.service-process-card:hover .service-icon-box {
    background: #FF6B35;
    /* Fill orange */
    transform: rotateY(180deg);
    /* 3D Flip effect */
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.service-process-card:hover .service-icon-box i {
    color: #fff;
    /* Turn white */
    transform: rotateY(-180deg);
    /* Counter flip to keep icon readable if needed, or just let it flip */
}

.service-process-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s;
}

.service-process-card:hover h3 {
    color: #FF6B35;
}

.service-process-card p {
    color: #A0A0C0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s;
}

.service-process-card:hover .read-more-link {
    color: #FF6B35;
    gap: 15px;
    /* Arrow moves away */
}


.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF6B35;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: 0.3s;
}

.read-more-link:hover {
    gap: 12px;
}

/* Full Width Card Style */
.full-width {
    grid-column: 1 / -1;
    min-height: auto;
}

.service-flex-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-text {
    max-width: 60%;
}

.service-icon-large i {
    font-size: 64px;
    color: rgba(255, 107, 53, 0.2);
}

@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .services-images {
        display: none;
        /* Hide side images on tablet/mobile */
    }

    .btn-dark-pill {
        position: static;
        margin-top: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: var(--spacing-xxl) 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* ===================================
   Blog Section
   =================================== */

.blog-section {
    padding: var(--spacing-xxl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 6px 16px;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 14px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-light);
    font-weight: 600;
    transition: var(--transition-base);
}

.blog-link:hover {
    gap: 12px;
    color: var(--text-primary);
}

.no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.no-blogs i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.no-blogs h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.no-blogs p {
    color: var(--text-secondary);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* ===================================
   Animations
   =================================== */

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease forwards;
}

.animate-fade-in-delay {
    animation: fade-in 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fade-in 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ===================================
   Utilities
   =================================== */

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Footer Zyniq Style
   =================================== */

.footer-zymiq {
    background: #050511;
    /* Very dark background */
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* CTA Block */
.footer-cta-block {
    max-width: 400px;
}

.footer-cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.footer-subscribe-form {
    position: relative;
    max-width: 350px;
}

.footer-subscribe-form input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border-radius: 50px;
    background: #0B0E23;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    font-size: 14px;
}

.footer-subscribe-form .input-icon {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B35;
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: #FF6B35;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn:hover {
    background: #e55a2a;
}

/* Links Group */
.footer-links-group {
    display: flex;
    gap: 80px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu a {
    color: #A0A0C0;
    font-size: 14px;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

/* Info Bar */
.footer-info-bar {
    background: #0B0E23;
    border-radius: 20px;
    padding: 30px 50px;
    margin-bottom: 40px;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.contact-item i {
    font-size: 18px;
}

.divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Bottom Row */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: #A0A0C0;
    font-size: 14px;
}

.footer-social-pills {
    display: flex;
    gap: 15px;
}

.social-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.social-pill:hover {
    border-color: #FF6B35;
    background: #FF6B35;
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top-grid {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links-group {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
    }

    .info-bar-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-contact-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-social-pills {
        flex-wrap: wrap;
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-image {
        order: -1;
    }

    .hero-character {
        max-width: 400px;
    }

    .hero-badge {
        bottom: 20px;
        left: 10px;
        padding: 12px 16px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-intro-content {
        padding-left: 0;
        margin-top: var(--spacing-lg);
    }

    /* Premium Side Drawer Menu */
    .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        background: #0B0E23;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 99999;
        padding: 80px 30px 40px;
        overflow-y: auto;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex !important;
        transform: translateX(0);
    }

    /* Backdrop overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 320px;
        width: calc(100vw - 320px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    /* Mobile Links - Clean & Modern */
    .nav-menu>a,
    .nav-menu>.dropdown {
        width: 100%;
        text-align: left;
    }

    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 24px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        text-align: left;
        border: none;
        opacity: 1 !important;
        animation: none;
        transition: color 0.3s;
    }

    .nav-menu .nav-link.active,
    .nav-menu .nav-link:hover {
        color: #fff;
    }

    /* Remove old underline on mobile */
    .nav-menu .nav-link::after {
        display: none;
    }

    /* Active Dot Indicator */
    .nav-menu .nav-link.active::before {
        content: '•';
        color: #FF6B35;
        margin-right: 10px;
        font-size: 24px;
    }

    /* Dropdown on Mobile - Clean Inline */
    .nav-menu .dropdown {
        position: relative;
    }

    .nav-menu .dropdown .nav-link {
        font-size: 24px;
        padding: 18px 0;
    }

    .nav-menu .dropdown-menu {
        position: static;
        display: block;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 0;
    }

    .nav-menu .dropdown-item {
        padding: 12px 0 12px 20px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
        background: transparent;
        text-align: left;
        transition: color 0.3s;
    }

    .nav-menu .dropdown-item:hover {
        color: #FF6B35;
        background: transparent;
    }

    /* Button Styling */
    .nav-menu .btn-glow-pill {
        margin-top: 30px;
        width: 100%;
        justify-content: center;
        padding: 18px;
        background: #FF6B35;
        font-size: 16px;
        border-radius: 12px;
    }

    /* Fix Toggle Button */
    .mobile-menu-toggle {
        display: block;
        z-index: 100000;
        position: fixed;
        top: 25px;
        right: 25px;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #FF6B35;
        font-size: 32px;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-toggle:hover {
        transform: rotate(90deg);
        background: transparent;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        position: static;
        margin-top: var(--spacing-md);
    }
}

/* ===================================
   Numbered Feature Cards
   =================================== */

.numbered-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.numbered-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 29, 63, 0.85), rgba(26, 29, 63, 0.85)), url('../images/card-bg.png') center/cover;
    transition: left 0.4s ease;
    z-index: 0;
}

.numbered-card:hover::before {
    left: 0;
}

.numbered-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    position: relative;
}

.numbered-card .card-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    z-index: 1;
    position: relative;
}

/* ===================================
   Scroll Reveal Animation
   =================================== */

.image-anime,
.reveal-anime {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-anime.reveal,
.reveal-anime.reveal {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.image-anime img {
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


.image-anime.reveal img {
    transform: translateY(0);
}

/* ===================================
   Modern Benefit Cards
   =================================== */

.modern-benefit-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    z-index: 1;
}

.modern-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(26, 29, 63, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.modern-benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modern-benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.modern-benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-wrapper i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.modern-benefit-card:hover .benefit-icon-wrapper i {
    color: #fff;
}

.modern-benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.modern-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Orange Bracket Box
   =================================== */

.orange-bracket-box {
    position: relative;
    padding: 30px 40px;
    /* Increased side padding */
    margin-top: 20px;
    display: inline-block;
}

.orange-bracket-box::before,
.orange-bracket-box::after {
    content: '';
    position: absolute;
    width: 25px;
    /* Width of the top/bottom segments */
    height: 100%;
    /* Full height */
    border: 6px solid var(--primary-color);
    transition: all 0.3s ease;
}

/* Left Bracket [ */
.orange-bracket-box::before {
    top: 0;
    left: 0;
    border-right: none;
    /* Open from right */
}

/* Right Bracket ] */
.orange-bracket-box::after {
    top: 0;
    right: 0;
    border-left: none;
    /* Open from left */
}

.orange-bracket-box:hover::before,
.orange-bracket-box:hover::after {
    width: 35px;
    /* Expand slightly on hover */
    background: rgba(255, 107, 53, 0.05);
    /* Subtle background tint */
}

.orange-bracket-box p {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.orange-bracket-box:hover p {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Custom Cursor
   =================================== */

@media (min-width: 992px) {
    body.custom-cursor-active {
        cursor: auto;
        /* Show default cursor */
    }

    /* Ensure elements don't override cursor */
    body.custom-cursor-active a,
    body.custom-cursor-active button,
    body.custom-cursor-active input,
    body.custom-cursor-active textarea,
    body.custom-cursor-active select,
    body.custom-cursor-active .btn {
        cursor: pointer !important;
        /* Standard pointer for links/buttons */
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--primary-color);
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        transition: width 0.3s, height 0.3s, background-color 0.3s;
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 2px solid rgba(255, 107, 53, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9998;
        pointer-events: none;
        transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    }

    /* Hover effect */
    body.hovering .cursor-dot {
        width: 12px;
        height: 12px;
        background-color: var(--secondary-color);
    }

    body.hovering .cursor-outline {
        width: 50px;
        height: 50px;
        border-color: rgba(245, 87, 108, 0.5);
        background-color: rgba(245, 87, 108, 0.05);
    }
}

/* ===================================
   Typewriter Animation
   =================================== */
.typewriter {
    display: inline-block;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    white-space: nowrap;
    /* Keeps the content on a single line */
    border-right: .15em solid transparent;
    /* Start invisible, let animation color it */
    margin: 0;
    /* Left align */
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
    max-width: 0;
    /* Clean start */
    animation-fill-mode: forwards;
    /* Keep final state */
}

/* For multi-line text, we need a word-by-word reveal instead */
.type-reveal-word span {
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.type-reveal-word.revealed span {
    opacity: 1;
    transform: translateY(0);
}

@keyframes typing {
    from {
        max-width: 0
    }

    to {
        max-width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-color);
    }
}

@keyframes transparent-border {
    to {
        border-right-color: transparent;
    }
}

/* ===================================
   Global Scroll Reveal
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    visibility: hidden;
    /* Avoid layout shifts before load? No, just hidden */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Staggered Delays */
.reveal-delay-1.active {
    transition-delay: 0.2s;
}

.reveal-delay-2.active {
    transition-delay: 0.4s;
}

.reveal-delay-3.active {
    transition-delay: 0.6s;
}

.reveal-delay-4.active {
    transition-delay: 0.8s;
}

/* Wipe Effect */
.reveal-wipe {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-wipe.active {
    clip-path: inset(0 0 0 0);
}

/* ===================================
   Hero Spotlight Cursor
   =================================== */
@media (min-width: 992px) {
    .cursor-spotlight {
        width: 40px;
        height: 40px;
        background-color: #ffffff;
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9997;
        /* Behind outline and dot */
        mix-blend-mode: difference;
        opacity: 0;
        transition: opacity 0.3s;
    }

    body.in-hero .cursor-spotlight {
        opacity: 1;
    }

    /* Ensure Dot and Outline stay visible */
    body.in-hero .cursor-outline {
        border-color: rgba(255, 107, 53, 0.5);
        /* Keep original color */
        background-color: transparent;
        width: 30px;
        /* Keep standard size */
        height: 30px;
    }

    body.in-hero .cursor-dot {
        opacity: 1;
    }
}

/* ===================================
   Zyniq Button Style
   =================================== */
.btn-zyniq {
    display: inline-flex;
    align-items: center;
    background: rgba(43, 46, 74, 0.4);
    /* Dark Blue/Grey tint */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    gap: 15px;
    backdrop-filter: blur(5px);
}

.btn-zyniq:hover {
    background: rgba(43, 46, 74, 0.6);
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
}

.btn-icon-circle {
    width: 44px;
    height: 44px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-zyniq:hover .btn-icon-circle {
    transform: rotate(-45deg) scale(1.1);
    background: #e55a2a;
}

/* ===================================
   MOBILE & TABLET OPTIMIZATION (COMPREHENSIVE)
   =================================== */

@media (max-width: 992px) {

    /* Feature Circle - Stack vertically */
    .feature-circle-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .feature-column {
        width: 100%;
        text-align: center;
        transform: none !important;
        /* Reset any specific transforms */
    }

    .feature-block {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .feature-title {
        justify-content: center;
    }

    /* Services */
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .services-images {
        display: flex;
        /* Show images again */
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        order: -1;
        /* Place above the cards */
    }

    .service-img-card {
        position: static;
        /* Remove absolute positioning effects if any */
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        transform: none !important;
    }

    .service-img-card img {
        width: 100%;
        border-radius: 16px;
    }

    /* Hero Font Size */
    .hero-title {
        font-size: 38px;
        /* Reduced from 48px */
    }

    /* Adjust center visual */
    .feature-center-visual {
        margin: 20px 0;
        transform: scale(0.9);
        order: -1;
        /* Move image to top on tablets */
    }

}


@media (max-width: 768px) {

    /* Container Padding */
    .container {
        padding: 0 20px;
    }

    /* Header */
    .header-container {
        height: 70px;
        justify-content: space-between;
        /* Ensure spreading */
    }

    .logo img {
        height: 45px;
        /* Increased from default */
        margin-left: -10px;
        /* Pull slightly left to align with container edge if needed */
    }

    /* Hero */
    .hero-section {
        padding: 120px 0 60px;
        /* More top padding for fixed header */
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
    }

    /* Feature Circle Mobile */
    .feature-center-visual {
        transform: scale(0.8);
        margin: 0;
        /* Keep orbit icons but scale down */
    }

    .pulse-circle-1,
    .pulse-circle-2 {
        width: 260px;
        height: 260px;
    }

    .center-image-container {
        width: 220px;
        height: 220px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 30px;
    }

    /* Section Titles */
    .section-title {
        font-size: 32px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    /* Hide some orbit icons on very small screens if needed */
    .orbit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        /* Smaller icons */
    }
}


/* Fix Hero Order: Text First, Image Second */
@media (max-width: 992px) {
    .hero-image {
        order: 0 !important;
        /* Reset order so it follows HTML structure (Text then Image) */
        margin-top: 40px;
    }
}

/* Fix Hero Badge on Mobile */
@media (max-width: 768px) {
    .hero-badge {
        position: static !important;
        /* Remove absolute positioning */
        margin: 20px auto 0;
        /* Center it below image */
        width: fit-content;
        transform: none !important;
        /* Remove any float animations if inherited */
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .hero-image {
        flex-direction: column;
        /* Stack image and badge */
    }
}

/* ===================================
   Orbit Animation for Feature Circle
   =================================== */

@keyframes orbit-circle {
    from {
        transform: rotate(0deg) translateX(210px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(210px) rotate(-360deg);
    }
}

/* Reset Icons to Center and Apply Orbit */
.orbit-ring .orbit-icon {
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    margin: -20px 0 0 -20px;
    /* Offset for 40px size */
    transform: none;
    /* Reset static transforms */

    animation: orbit-circle 30s linear infinite;
}

/* Stagger Animations for spacing */
.orbit-ring .icon-1 {
    animation-delay: 0s;
}

.orbit-ring .icon-2 {
    animation-delay: -5s;
}

.orbit-ring .icon-3 {
    animation-delay: -10s;
}

.orbit-ring .icon-4 {
    animation-delay: -15s;
}

.orbit-ring .icon-5 {
    animation-delay: -20s;
}

.orbit-ring .icon-6 {
    animation-delay: -25s;
}

/* Responsive Adjustment */
@media (max-width: 992px) {
    @keyframes orbit-circle-mobile {
        from {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }

    .orbit-ring .orbit-icon {
        animation-name: orbit-circle-mobile;
    }
}

@media (max-width: 768px) {
    @keyframes orbit-circle-small {
        from {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }

    .orbit-ring .orbit-icon {
        animation-name: orbit-circle-small;
    }
}


/* ===================================
   Enhanced Scroll Animations
   =================================== */

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===================================
   Service Contact Form Styles
   =================================== */

.service-option-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.service-option-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.service-option-btn.active {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-option-btn input[type="radio"]:checked+span {
    color: white;
}

/* Form Input Hover Effects */
#serviceContactForm input:hover,
#serviceContactForm textarea:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

#serviceContactForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

#serviceContactForm button:hover span {
    transform: rotate(-45deg);
}

/* Force Input Styling to fix potential layout issues */
#serviceContactForm input,
#serviceContactForm textarea {
    width: 100%;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    min-height: 56px;
    /* Explicit height to match design */
}

#serviceContactForm textarea {
    min-height: 150px;
}

/* Responsive Form Grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 32px !important;
    }

    .hero-padding {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
}

/* Hero Grid Responsive */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-grid h1 {
        font-size: 42px !important;
    }

    .hero-grid p {
        font-size: 16px !important;
    }

    .hero-grid .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    /* Fix flex container for buttons on mobile */
    .hero-grid div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    /* Disable typewriter on mobile so text wraps */
    .typewriter {
        white-space: normal !important;
        overflow: visible !important;
        max-width: 100% !important;
        animation: none !important;
        border: none !important;
    }

    .hero-section .hero-title {
        font-size: 32px !important;
    }

    .reveal-left {
        transform: translateX(-20px) !important;
    }

    .reveal-right {
        transform: translateX(20px) !important;
    }

    /* Fix Diagram Overflow - Scale it down */
    .feature-center-visual {
        transform: scale(0.65);
        margin: -60px 0;
        /* compensate for scale whitespace */
    }

    /* Fix Alignment Issues - Center content on mobile */
    .section-header-left,
    .section-header {
        align-items: center !important;
        text-align: center !important;
    }

    .services-wrapper {
        text-align: center;
        justify-items: center;
        /* Center grid items */
    }

    .services-cards-grid {
        justify-items: center;
        /* Center cards in grid */
        width: 100%;
    }

    .services-images {
        align-items: center;
        /* Center flex items */
        width: 100%;
    }

    .services-images .service-img-card {
        margin: 0 auto;
        /* Center images */
    }

    /* Ensure cards are centered/full width */
    .service-process-card {
        margin: 0 auto !important;
        text-align: center !important;
        align-items: center !important;
        display: flex;
        flex-direction: column;
        max-width: 400px;
        /* Prevent being too wide */
        width: 100%;
    }

    .section-title,
    .about-intro-title {
        text-align: center !important;
    }

    /* Disable reveal animations on mobile for stability and centering */
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-wipe {
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }

    .service-process-card {
        width: 90% !important;
        max-width: 380px !important;
    }
}