/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --bg-color: #050505;
    --bg-darker: #020202;
    --text-color: #ffffff;
    --text-muted: #a3a3a3;
    /* Yellow/Gold Theme */
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --secondary-gradient: linear-gradient(135deg, #FDB931 0%, #F59E0B 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 20px rgba(255, 215, 0, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --primary: #FFD700;
    --primary-rgb: 255, 215, 0;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: none;
    /* Hide default cursor */
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.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: #FFD700;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    /* Only animate size/color, not position */
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITIES & COMPONENTS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.full-width {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   HEADER
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo img {
    height: 60px;
    /* Increased from 40px */
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.7);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* =========================================
   STATS BANNER
   ========================================= */
.stats-banner {
    background: var(--bg-darker);
    padding: 3rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item .small {
    font-size: 1.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   MARQUEE SECTION
   ========================================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #FFD700;
    padding: 0.8rem 0;
    position: relative;
    z-index: 5;
    transform: rotate(-1deg) scale(1.05);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    padding-right: 2rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   WHY CHOOSE US / FEATURES
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
/* =========================================
   SERVICES SECTION (UNIQUE VIEWFINDER)
   ========================================= */
/* =========================================
   SERVICES SECTION (COMPACT SPOTLIGHT)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Spotlight Effect: Dim others when one is hovered */
.services-grid:hover .service-card:not(:hover) {
    opacity: 0.4;
    filter: blur(2px) grayscale(0.8);
    transform: scale(0.95);
}

.service-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

/* Corner Accents (Subtle Mode) */
.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card::before {
    top: 0;
    left: 0;
    border-top-color: rgba(255, 215, 0, 0.3);
    border-left-color: rgba(255, 215, 0, 0.3);
}

.service-card::after {
    bottom: 0;
    right: 0;
    border-bottom-color: rgba(255, 215, 0, 0.3);
    border-right-color: rgba(255, 215, 0, 0.3);
}

.service-card:hover {
    transform: scale(1.05) translateY(-5px);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    z-index: 10;
    opacity: 1 !important;
    /* Force full opacity on hover */
    filter: none !important;
}

.service-card:hover::before,
.service-card:hover::after {
    width: 100%;
    height: 100%;
    border-color: #FFD700;
    opacity: 0.2;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: #FFD700;
    color: #000;
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-list {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.service-list li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li::before {
    content: '›';
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 0.8;
}

.featured-service {
    border-color: rgba(255, 215, 0, 0.3);
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 60%), rgba(20, 20, 20, 0.7);
}

.service-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 2px 8px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    position: relative;
}

.thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .thumb-video {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.portfolio-info span {
    font-size: 0.85rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1);
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

/* =========================================
   WORKFLOW SECTION
   ========================================= */
.workflow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-card {
    position: relative;
    width: 160px;
    height: 160px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
    /* Base neon */
    transition: var(--transition);
    border-radius: 50%;
    /* Circular mechanism look */
}

/* Hover Effects */
.step-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(5, 5, 5, 0.8);
    z-index: 2;
}

.step-number {
    position: absolute;
    top: 5px;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.8rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.3);
    font-family: var(--font-heading);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    background: #000;
}

.step-card:hover .step-number {
    color: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.step-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.step-card:hover .step-icon {
    color: #FFD700;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.step-card h3 {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.step-connector {
    color: rgba(255, 215, 0, 0.2);
    font-size: 1.2rem;
    animation: pulseConnector 2s infinite;
}

@keyframes pulseConnector {

    0%,
    100% {
        opacity: 0.2;
        transform: translateX(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(5px);
        color: #FFD700;
    }
}

@media (max-width: 900px) {
    .workflow-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .workflow-step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    @keyframes pulseConnector {

        0%,
        100% {
            opacity: 0.2;
            transform: rotate(90deg) translateY(0);
        }

        50% {
            opacity: 0.8;
            transform: rotate(90deg) translateY(5px);
            color: #FFD700;
        }
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition);
}

.image-frame:hover::after {
    opacity: 0.5;
}

.image-frame img {
    width: 100%;
    border-radius: 20px;
    filter: contrast(1.1) saturate(1.1);
    /* Color & Enhanced */
    transition: var(--transition);
    display: block;
}

.image-frame:hover img {
    transform: scale(1.03);
    filter: contrast(1.15) saturate(1.2) brightness(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: rgba(5, 5, 5, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.4;
}

/* Philosophy Quote */
.philosophy-box {
    margin: 2rem 0;
    padding: 2rem;
    border-left: 3px solid #FFD700;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.philosophy-box i {
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.philosophy-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.text-highlight {
    color: #FFD700;
    font-weight: 600;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Timeline */
.milestone-timeline {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5rem;
    padding-left: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.95rem;
    /* Adjust based on padding/border */
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.timeline-item:hover::before {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.timeline-item .year {
    font-size: 0.8rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #fff;
    font-family: var(--font-heading);
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Refined Tools Grid */
.tools-grid {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.tool-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: help;
    padding: 10px;
    /* Padding for logos */
}

.tool-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    /* Removed grayscale */
    opacity: 1;
    /* Full visibility */
    transition: var(--transition);
}

.tool-item:hover img {
    transform: scale(1.1);
}

.tool-item:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.tool-text {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #fff;
    font-weight: 600;
    opacity: 0.8;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-badge {
        right: 0;
        bottom: -1rem;
    }

    .philosophy-box {
        margin: 1.5rem 0;
    }
}



/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
    /* Subtle base neon */
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.05);
    /* Stronger neon on hover */
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: #FFD700;
    /* Gold for neon effect */
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    /* Glowing icon */
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    /* Slightly brighter border */
    padding-top: 1.5rem;
}

.client-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.client-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating {
    color: #FFD700;
    font-size: 0.8rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
    /* Glowing stars */
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing-content {
    margin-top: 4rem;
}

.pricing-group {
    margin-bottom: 5rem;
    position: relative;
}

.pricing-group h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.table-container {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.table-container:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.pricing-table th {
    background: rgba(255, 215, 0, 0.05);
    color: #FFD700;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.pricing-table td {
    color: var(--text-color);
    font-size: 1rem;
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: scale(1.01);
}

.pricing-table tbody tr:hover td {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Custom Scrollbar for Table */
.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.table-highlight {
    color: #FFD700 !important;
    font-weight: 800;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.pricing-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.revision-policy,
.important-note {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border-radius: 12px;
}

.revision-policy h4,
.important-note h4 {
    color: #FFD700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.note-list li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
}

.price-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {

    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-info {
    padding: 3rem;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #FFD700;
    margin-top: 0.3rem;
}

.contact-item h5 {
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.contact-form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.05);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    height: 30px;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.6);
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.lightbox-content video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: #FFD700;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ENHANCED ABOUT SECTION
   ========================================= */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text-side p {
    text-align: left;
    margin-left: 0;
}

.about-text-side ul li {
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.benefit-card.offset-card {
    transform: translateY(30px);
}

.benefit-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text-side p {
        text-align: center !important;
        margin: 0 auto 2rem auto !important;
    }

    .about-text-side ul {
        align-items: center;
    }

    .benefit-card.offset-card {
        transform: translateY(0);
    }
}

/* =========================================
   MUSIC CONTROL
   ========================================= */
.music-toggle {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.music-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.music-toggle.playing i {
    animation: rotateMusic 3s linear infinite;
}



/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ENHANCED ABOUT SECTION
   ========================================= */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text-side p {
    text-align: left;
    margin-left: 0;
}

.about-text-side ul li {
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.benefit-card.offset-card {
    transform: translateY(30px);
}

.benefit-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text-side p {
        text-align: center !important;
        margin: 0 auto 2rem auto !important;
    }

    .about-text-side ul {
        align-items: center;
    }

    .benefit-card.offset-card {
        transform: translateY(0);
    }

}

/* =========================================
   MUSIC CONTROL
   ========================================= */
.music-toggle {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.music-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.music-toggle.playing i {
    animation: rotateMusic 3s linear infinite;
}



/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ENHANCED ABOUT SECTION
   ========================================= */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text-side p {
    text-align: left;
    margin-left: 0;
}

.about-text-side ul li {
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.benefit-card.offset-card {
    transform: translateY(30px);
}

.benefit-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text-side p {
        text-align: center !important;
        margin: 0 auto 2rem auto !important;
    }

    .about-text-side ul {
        align-items: center;
    }

    .benefit-card.offset-card {
        transform: translateY(0);
    }
}

/* =========================================
   HAPPY CLIENTS SECTION (MARQUEE)
   ========================================= */
.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 5rem;
    animation: marqueeScroll 20s linear infinite;
    padding-left: 5rem;
    /* Initial buffer */
}

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

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

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls half width (original set) */
}

.client-item {
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    /* Fully visible */
    filter: none;
    /* No grayscale */
    text-decoration: none;
    /* Remove underline from links */
}

.client-item:hover {
    transform: scale(1.1);
}

.client-icon {
    font-size: 3.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.client-item:hover .client-icon {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Helper class for your actual logo images */
.client-logo {
    height: 50px;
    width: auto;
    filter: none;
    /* Show original colors */
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    /* Glow on hover instead of color reveal */
}