:root {
    /* Brand Colors */
    --primary-yellow: #F3C518;
    --bright-gold: #FFD43B;
    --bg-black: #0B0B0B;
    --bg-carbon: #141414;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);

    /* Glows */
    --glow-yellow: #FFEA6A;
    --glow-white: rgba(255, 255, 255, 0.22);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 20, 20, 0.6);

    /* Fonts */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   Utilities
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--bright-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(243, 197, 24, 0.3);
}

.glass-panel {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    background: rgba(30, 30, 30, 0.7);
    border-color: rgba(243, 197, 24, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(243, 197, 24, 0.05);
    transform: translateY(-5px) scale(1.01);
}

/* =========================================
   Components (Buttons, Badges)
   ========================================= */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--bg-black);
    box-shadow: 0 0 20px rgba(243, 197, 24, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.btn-primary:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-primary:hover {
    background: var(--bright-gold);
    box-shadow: 0 0 30px rgba(255, 212, 59, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.05);
}

.btn-mobile-only {
    display: none;
}

/* =========================================
   Animations
   ========================================= */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 197, 24, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(243, 197, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 197, 24, 0);
    }
}

@keyframes glow-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 40px));
    }
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 60px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    10% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    100% {
        clip: rect(20px, 9999px, 60px, 0);
    }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 15px 30px;
}

.navbar.glass-panel:hover {
    transform: translateX(-50%);
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo-icon {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    transform: translateX(-50px);
    /* Nudge text left as requested */
}

@media (max-width: 768px) {
    .hero-content {
        transform: translateX(0);
        padding: 0 15px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-yellow);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-badge {
    position: absolute;
    right: 10%;
    top: 40%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(243, 197, 24, 0.15);
    animation: float 6s ease-in-out infinite;
}

.badge-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.badge-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* =========================================
   Logo Strip (Marquee)
   ========================================= */
.logo-strip {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(11, 11, 11, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.strip-label {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    gap: 40px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: scroll 20s linear infinite;
}

.brand-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: default;
}

.brand-logo:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 15px rgba(243, 197, 24, 0.5);
}

/* =========================================
   Services Section
   ========================================= */
.services-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    justify-content: center;
    direction: ltr;
}

.service-card {
    padding: 30px;
    transition: transform 0.3s ease;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* =========================================
   Why Us Section
   ========================================= */
.why-us-section {
    padding: 100px 0;
    position: relative;
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.why-text {
    flex: 1;
    z-index: 2;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantage-list {
    margin-top: 30px;
}

.advantage-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantage-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.advantage-list i {
    color: var(--primary-yellow);
}

.advantage-list li:hover i {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-yellow);
}

.why-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.abstract-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 0 50px rgba(243, 197, 24, 0.2);
    position: relative;
}

.abstract-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0.5;
    animation: glow-pulse 3s infinite;
}

/* =========================================
   About Section (Home)
   ========================================= */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.7)), url('about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(243, 197, 24, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* =========================================
   System Section Enhancements
   ========================================= */
.service-card {
    position: relative;
    /* For step-label positioning */
}

.active-step {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 25px rgba(243, 197, 24, 0.15);
}

.step-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--bg-black);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.muted-card {
    opacity: 0.6;
    filter: grayscale(0.8);
    border-color: rgba(255, 255, 255, 0.05);
}

.muted-card:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* =========================================
   Audit Section (New)
   ========================================= */
.audit-section {
    padding: 60px 0;
    position: relative;
    margin-top: 40px;
    /* Spacing from marquee */
}

.audit-panel {
    padding: 50px;
    border: 1px solid rgba(243, 197, 24, 0.3);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(11, 11, 11, 0.95));
}

.audit-header {
    text-align: center;
    margin-bottom: 40px;
}

.audit-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-style: italic;
}

.audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.audit-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.audit-content .check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.audit-content .check-list i {
    color: var(--primary-yellow);
    margin-top: 5px;
}

.audit-details {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.detail-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-weight: 700;
    color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .audit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audit-panel {
        padding: 30px;
    }
}

/* =========================================
   Refactored Inline Styles
   ========================================= */

/* Visually Hidden (for SEO H1) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Overview Section */
.overview-panel {
    padding: 3rem;
    margin-bottom: 2rem;
}

.overview-title {
    margin-bottom: 1.5rem;
}

.overview-text-container {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.overview-text-container p {
    margin-bottom: 1.5rem;
}

.overview-text-container p:last-child {
    margin-bottom: 0;
}



.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 30px;
    max-width: 300px;
    border-left: 4px solid var(--primary-yellow);
}

.stat-card h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.client-info strong {
    display: block;
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 40px rgba(243, 197, 24, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Custom Select Styling */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3c518' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    /* Dark background for options */
    color: var(--text-primary);
    padding: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(243, 197, 24, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-group option {
    background-color: var(--bg-black);
    color: white;
}

.form-footer {
    text-align: center;
}

.micro-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: black;
    padding: 80px 0 30px;
    border-top: 1px solid transparent;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 5px;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.2rem;
    opacity: 0.7;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.5;
}

/* =========================================
   Portfolio & Bento Grid Styles
   ========================================= */
.portfolio-section {
    padding: 50px 0 100px;
}

.portfolio-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 40px;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 15, 15, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-card:hover {
    box-shadow: 0 20px 40px rgba(243, 197, 24, 0.15);
    border-color: rgba(243, 197, 24, 0.3);
    z-index: 10;
}

/* Grid Spans */
.feature-card {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    align-items: center;
}

.tall-card {
    grid-column: span 1;
    grid-row: span 2;
}

.standard-card {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}

/* Card Content Styling */
.card-content {
    padding: 30px;
    width: 50%;
    z-index: 2;
}

.feature-card .card-image {
    width: 50%;
    height: 100%;
    position: relative;
}

.feature-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
    mask-image: linear-gradient(to right, transparent, black 20%);
}

.tall-card .card-image {
    width: 100%;
    height: 100%;
}

.tall-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tall-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.standard-card .card-image {
    height: 55%;
    width: 100%;
    overflow: hidden;
}

.standard-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.standard-card:hover img {
    transform: scale(1.1);
}

.card-content-compact {
    padding: 20px;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography & Elements */
.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-yellow);
    border: 1px solid rgba(243, 197, 24, 0.3);
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(243, 197, 24, 0.05);
}

.bento-card h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: white;
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: white;
}

.bento-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stats Strip */
.stats-strip {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 197, 24, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    animation: float-orb 10s infinite ease-in-out;
    pointer-events: none;
}

.stats-strip::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 249, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    animation: float-orb 15s infinite ease-in-out reverse;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Blueprint Section */
.blueprint-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
}

.blueprint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #050505 90%);
    pointer-events: none;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.blueprint-step {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blueprint-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background: rgba(243, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.blueprint-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.blueprint-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.blueprint-connector {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 0.3;
}

/* Tech Marquee */
.tech-marquee-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-marquee {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}

.tech-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.tech-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.tech-item i {
    font-size: 2rem;
}

.tech-item:hover {
    color: var(--primary-yellow);
}

/* Client Spotlight */
.client-spotlight-section {
    padding: 100px 0;
}

.spotlight-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 197, 24, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.spotlight-image {
    position: relative;
}

.spotlight-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.spotlight-card:hover .spotlight-image img {
    filter: grayscale(0%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    background: var(--primary-yellow);
    color: black;
    transform: translate(-50%, -50%) scale(1.1);
}

.spotlight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.spotlight-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.spotlight-author strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-yellow);
}

.spotlight-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================================
   Blog Section
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #0d0d0d);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.blog-category {
    background: var(--primary-yellow);
    color: var(--bg-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Blog Article Hero */
.article-hero {
    padding: 180px 0 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.article-hero .back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-hero .back-link:hover {
    color: var(--primary-yellow);
}

.article-hero .hero-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-hero .category-tag {
    color: var(--primary-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-hero .article-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Article Featured Image */
.article-featured-image {
    margin-bottom: 60px;
}

.article-featured-image .featured-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Article Content */
.article-content {
    padding-bottom: 100px;
}

.article-content .content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* =========================================
   Responsive Media Queries
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .floating-badge {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .feature-card,
    .tall-card,
    .standard-card {
        grid-column: span 1;
        grid-row: auto;
    }

    .feature-card {
        flex-direction: column-reverse;
    }

    .feature-card .card-content,
    .feature-card .card-image {
        width: 100%;
    }

    .feature-card .card-image {
        height: 250px;
    }

    .feature-card .card-image img {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .tall-card {
        height: 400px;
    }

    .standard-card {
        height: auto;
    }

    .blueprint-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blueprint-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(to bottom, transparent, var(--primary-yellow), transparent);
    }

    .spotlight-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 768px) {

    /* Mobile Navbar Fixes */
    .navbar {
        width: auto;
        top: 0;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        border-radius: 0;
        padding: 15px 20px;
        background: rgba(11, 11, 11, 0.95);
        box-sizing: border-box;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -20px;
        width: calc(100% + 40px);
        height: auto;
        background: rgba(11, 11, 11, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        z-index: 998;
        border-bottom: 1px solid rgba(243, 197, 24, 0.1);
    }

    .nav-links.nav-active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 0;
    }

    .hamburger {
        display: block;
    }

    .nav-actions .btn {
        display: none;
    }

    .nav-links .btn-mobile-only {
        display: inline-block;
        margin-top: 20px;
    }

    /* Hero & Layout Adjustments */
    .hero-section {
        padding-top: 120px;
        text-align: center;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .hero-content {
        margin: 0 auto;
        width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-card {
        margin: 0 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* Contact Section Mobile Fixes */
    .contact-wrapper {
        padding: 25px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    /* Why Us Section Mobile Fixes */
    .why-us-content {
        flex-direction: column;
        padding: 30px 20px !important;
        gap: 30px;
    }

    .why-text {
        width: 100%;
    }

    .why-visual {
        width: 100%;
        margin-top: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* =========================================
   Blog Section
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #0d0d0d);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.blog-category {
    background: var(--primary-yellow);
    color: var(--bg-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* =========================================
   One-Stop Solution Section
   ========================================= */
.one-stop-section {
    padding: 80px 0;
    position: relative;
}

.one-stop-container {
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.one-stop-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.one-stop-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stat-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.stat-info h3 {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.one-stop-visual {
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 197, 24, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite;
}

.floating-card {
    position: absolute;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(243, 197, 24, 0.2);
    animation: float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.floating-card span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .one-stop-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .one-stop-visual {
        display: none;
    }
}

/* =========================================
   Arsenal Grid (About Page)
   ========================================= */
.arsenal-grid {
    padding: 20px;
}

.blog-category {
    background: var(--primary-yellow);
    color: var(--bg-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* =========================================
   One-Stop Solution Section
   ========================================= */
.one-stop-section {
    padding: 80px 0;
    position: relative;
}

.one-stop-container {
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.one-stop-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.one-stop-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stat-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.stat-info h3 {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.one-stop-visual {
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 197, 24, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite;
}

.floating-card {
    position: absolute;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(243, 197, 24, 0.2);
    animation: float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.floating-card span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .one-stop-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .one-stop-visual {
        display: none;
    }
}

/* =========================================
   Arsenal Grid (About Page)
   ========================================= */
.arsenal-grid {
    padding: 20px;
}

.blog-category {
    background: var(--primary-yellow);
    color: var(--bg-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* =========================================
   One-Stop Solution Section
   ========================================= */
.one-stop-section {
    padding: 80px 0;
    position: relative;
}

.one-stop-container {
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.one-stop-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.one-stop-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stat-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.stat-info h3 {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.one-stop-visual {
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 197, 24, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s infinite;
}

.floating-card {
    position: absolute;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(243, 197, 24, 0.2);
    animation: float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.floating-card span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .one-stop-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .one-stop-visual {
        display: none;
    }
}

/* =========================================
   Arsenal Grid (About Page)
   ========================================= */
.arsenal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .arsenal-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   Portfolio Redesign Styles
   ========================================= */

/* Fullscreen Hero */
.portfolio-hero-fullscreen {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 5%;
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.4), rgba(11, 11, 11, 0.98));
    z-index: 2;
}

.portfolio-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
}

.project-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--primary-yellow);
}

.project-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.project-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Meta Grid */
.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item h4 {
    font-size: 0.8rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
    opacity: 0.9;
}

.meta-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Process Section Styles */
.process-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.process-section.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-grid.reverse {
    direction: rtl;
}

.process-grid.reverse .process-content {
    direction: ltr;
    padding-left: 40px;
    padding-right: 0;
}

.process-content {
    padding-right: 40px;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    margin-left: -5px;
    position: relative;
    z-index: 0;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-list li i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

/* Process Visual */
.process-visual .image-wrapper {
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.visual-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Step Card */
.process-step-card {
    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);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.process-step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(243, 197, 24, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-icon-large {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    display: inline-block;
}

.process-step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.process-step-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {

    .process-grid,
    .process-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
    }

    .process-grid.reverse .process-content {
        padding-left: 0;
    }

    .process-content {
        padding-right: 0;
        text-align: center;
    }

    .step-number {
        margin-left: 0;
    }

    .project-title-large {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .project-title-large {
        font-size: 2.5rem;
    }

    .project-meta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .portfolio-hero-fullscreen {
        height: auto;
        padding: 140px 20px 80px;
    }

    .process-section {
        padding: 80px 0;
    }
}

/* =========================================
   Modal Styles
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-carbon);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 50px rgba(243, 197, 24, 0.15);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-yellow);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(243, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-yellow);
    font-size: 2.5rem;
    border: 1px solid rgba(243, 197, 24, 0.3);
}

.modal-content h3 {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-list li i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

/* Process Visual */
.process-visual .image-wrapper {
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.visual-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Step Card */
.process-step-card {
    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);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.process-step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(243, 197, 24, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-icon-large {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    display: inline-block;
}

.process-step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.process-step-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {

    .process-grid,
    .process-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
    }

    .process-grid.reverse .process-content {
        padding-left: 0;
    }

    .process-content {
        padding-right: 0;
        text-align: center;
    }

    .step-number {
        margin-left: 0;
    }

    .project-title-large {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .project-title-large {
        font-size: 2.5rem;
    }

    .project-meta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .portfolio-hero-fullscreen {
        height: auto;
        padding: 140px 20px 80px;
    }

    .process-section {
        padding: 80px 0;
    }
}

/* =========================================
   Modal Styles
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-carbon);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--primary-yellow);
    box-shadow: 0 0 50px rgba(243, 197, 24, 0.15);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-yellow);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(243, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-yellow);
    font-size: 2.5rem;
    border: 1px solid rgba(243, 197, 24, 0.3);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
}

.modal-btn-close {
    width: 100%;
}

/* =========================================
   Mobile Responsiveness for One-Stop Solution
   ========================================= */
@media (max-width: 576px) {
    .one-stop-container {
        padding: 25px;
        gap: 30px;
    }

    .one-stop-content h2 {
        font-size: 2rem;
    }

    .stat-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-card-modern {
        padding: 15px;
    }
}

/* =========================================
   New Section Styles (Refactor)
   ========================================= */

/* Hero Updates */
.hero-cta-group .cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.7);
}

/* System Grid */
.system-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* AI Section */
.ai-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(243, 197, 24, 0.05) 0%, transparent 70%);
}

.ai-content {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.ai-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ai-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
}

.portfolio-grid {
    margin-top: 50px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.portfolio-item {
    padding: 30px;
}

.portfolio-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.portfolio-item p {
    opacity: 0.8;
}

/* Who This Is For Section */
.who-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.who-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.who-card h3 {
    margin-bottom: 20px;
}

.who-card.best-with h3 {
    color: var(--primary-yellow);
}

.who-card.not-ideal h3 {
    opacity: 0.7;
}

.check-list,
.cross-list {
    list-style: none;
}

.check-list li,
.cross-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.check-list li i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.cross-list li {
    opacity: 0.7;
}

.cross-list li i {
    color: #ff4d4d;
    margin-right: 10px;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
}

.founder-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(243, 197, 24, 0.2);
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.founder-content h2 {
    margin-bottom: 30px;
}

.founder-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-highlight {
    font-weight: 600;
    color: var(--primary-yellow);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.timeline-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    padding: 30px;
    min-width: 250px;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-label {
    font-size: 0.9rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
}

.timeline-step::after {
    content: '\f105';
    /* FontAwesome right arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
}

.timeline-step:last-child::after {
    display: none;
}

@media (max-width: 900px) {
    .timeline-step::after {
        display: none;
    }

    .timeline-grid {
        flex-direction: column;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   New Refactoring Styles (About & Blog)
   ========================================= */

/* Blog CTA Block */
.blog-cta-section {
    padding-bottom: 100px;
}

.blog-cta-panel {
    padding: 50px;
    border: 1px solid var(--primary-yellow);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(243, 197, 24, 0.1);
}

.blog-cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.blog-cta-desc {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Author Signature */
.author-signature {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
}

.author-name {
    display: block;
    color: var(--primary-yellow);
    margin-bottom: 4px;
    font-weight: 700;
}

.author-role {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* About Page Reassurance */
.reassurance-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Blog Article Framing */
.article-framing {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-yellow);
    padding-left: 15px;
}

/* Blog Context Line */
.article-context {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.9;
}

/* Refactoring - Article Styles */
.article-hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
}

.article-meta-info {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.article-meta-separator {
    margin: 0 10px;
}

.article-title-large {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.article-content-section {
    padding-bottom: 100px;
}

.article-container-narrow {
    max-width: 800px;
}

.article-featured-image {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 20px;
}

.article-image-full {
    width: 100%;
    height: auto;
    display: block;
}

.article-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body-heading {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.article-paragraph {
    margin-bottom: 30px;
    font-weight: 500;
}

.article-paragraph-mb {
    margin-bottom: 30px;
}

.article-list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.article-list-item-bordered {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-yellow);
}

.quote-box-custom {
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-yellow);
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    color: var(--text-secondary);
}

.share-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.share-title {
    margin-bottom: 20px;
}

.share-social-icons {
    justify-content: center;
}

/* Refactoring - About Page Styles */
.hero-section-about {
    min-height: 60vh;
    padding-top: 150px;
}

.hero-content-center {
    margin: 0 auto;
}

.hero-subtitle-about {
    margin: 0 auto 40px;
}

.cta-margin-top {
    margin-top: 30px;
}

/* Refactoring - Blog Index */
.blog-index-section {
    padding: 50px 0 100px;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio & Project Utilities */
.portfolio-thumb-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.portfolio-card-content {
    padding: 20px;
}

.article-list-numbered {
    list-style: none;
    padding: 0;
}

.article-list-item-numbered {
    counter-increment: list-item;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.article-list-number {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.project-tags .blog-category {
    background: rgba(243, 197, 24, 0.1);
    border: 1px solid rgba(243, 197, 24, 0.4);
    color: var(--primary-yellow);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-tags .blog-category:hover {
    background: var(--primary-yellow);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 197, 24, 0.3);
}

.hr-separator {
    margin: 50px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-primary-color {
    color: var(--text-primary);
}

.text-yellow-color {
    color: var(--primary-yellow);
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mr-10 {
    margin-right: 10px;
}

/* Diagram Images */
.diagram-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Who Is Hustronix For Section */
.who-panel {
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.who-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.who-disclaimer {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Fix for author signature */
.author-signature p {
    color: var(--text-secondary);
}

.portfolio-disclaimer {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Portfolio Hero Refactor */
.portfolio-hero-dedicated {
    padding-top: 180px;
    padding-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-hero-badge {
    margin: 0 auto 20px;
}

.portfolio-hero-dedicated .hero-title {
    display: inline-block;
    /* Fixes glitch background bar issue */
    margin-bottom: 20px;
}

.portfolio-hero-subtitle {
    max-width: 600px;
    margin: 20px auto 40px;
    /* Centers the block */
    text-align: center;
    /* Centers the text inside */
}

/* Back to Portfolio Link */
.back-to-portfolio-container {
    padding-top: 100px;
    padding-bottom: 20px;
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-yellow);
}

.blog-conclusion {
    margin-top: 20px;
    font-weight: 500;
}

.view-portfolio-container {
    margin-top: 50px;
    text-align: center;
}

/* Utilities */
.hidden {
    display: none !important;
}

.mt-10-opacity {
    margin-top: 10px;
    opacity: 0.8;
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select-trigger:hover {
    border-color: rgba(243, 197, 24, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--primary-yellow);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(20, 20, 20, 0.95);
}

.arrow {
    position: relative;
    height: 10px;
    width: 10px;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0.15rem;
    height: 100%;
    transition: all 0.3s;
}

.arrow::before {
    left: -3px;
    transform: rotate(45deg);
    background-color: var(--primary-yellow);
}

.arrow::after {
    left: 3px;
    transform: rotate(-45deg);
    background-color: var(--primary-yellow);
}

.custom-select.open .arrow::before {
    left: -3px;
    transform: rotate(-45deg);
}

.custom-select.open .arrow::after {
    left: 3px;
    transform: rotate(45deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid var(--primary-yellow);
    border-top: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #0f0f0f;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(5px);
    /* Slide down slightly */
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-of-type {
    border-bottom: 0;
}

.custom-option:hover,
.custom-option.selected {
    color: var(--bg-black);
    background: var(--primary-yellow);
    font-weight: 600;
}

/* Scrollbar for options */
.custom-options::-webkit-scrollbar {
    width: 6px;
}

.custom-options::-webkit-scrollbar-track {
    background: #0f0f0f;
}

.custom-options::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background: var(--primary-yellow);
}

/* Original select hidden by JS */

/* =========================================
   Audit Page & Text Links
   ========================================= */
.audit-page-container {
    padding-top: 150px;
    padding-bottom: 100px;
}

.timeline-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.timeline-step .step-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-yellow);
    color: var(--bg-black);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
}

.text-link-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.text-link-small:hover {
    color: var(--primary-yellow);
    gap: 12px;
}

.audit-intro {
    max-width: 800px;
    margin: 0 auto;
}

.audit-section-block {
    padding: 50px;
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-3 {
    margin-top: 12px;
}

.text-clarity {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.text-no-upsell {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-style: italic;
}

.not-for-border {
    border-color: rgba(255, 50, 50, 0.3);
}

.title-not-for {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.title-primary {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.audit-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.single-column {
    columns: 1;
}

.audit-user-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.timeline-centered {
    justify-content: center;
    margin-top: 0;
}

.text-muted-small {
    margin-top: 30px;
    opacity: 0.8;
}

.final-cta-spacer {
    margin-top: 120px;
    margin-bottom: 100px;
}

.pricing-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.pricing-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pricing-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 20px 0;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-subtext {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.pricing-no-discount {
    border: none;
    padding-top: 0;
    margin-top: 10px;
}

.mt-40 {
    margin-top: 40px;
}

.pricing-note {
    margin-top: 15px;
    font-weight: 700;
}

/* Enhanced Audit Visuals */
.audit-image-container {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.audit-image-container:hover img {
    transform: scale(1.02);
}

.audit-card-enhanced {
    position: relative;
    overflow: hidden;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

.audit-card-enhanced h3,
.audit-card-enhanced ul {
    position: relative;
    z-index: 1;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.mt-15 {
    margin-top: 15px;
}

/* =========================================
   Mobile Navigation
   ========================================= */
@media (max-width: 900px) {
    .hamburger {
        display: block;
        font-size: 1.5rem;
        color: white;
        z-index: 1001;
        /* Above the side menu */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(11, 11, 11, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        padding-bottom: 50px;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        /* Reduced from 1.2rem */
        font-weight: 500;
        margin: 12px 0;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-links a:hover {
        color: var(--primary-yellow);
        transform: translateX(5px);
    }

    .nav-actions .btn {
        display: none;
    }

    .btn-mobile-only {
        display: inline-block !important;
        margin: 35px 25px 0 25px;
        /* Added explicit horizontal margins */
        align-self: center;
        padding: 8px 14px;
        font-size: 0.6rem;
        width: auto;
        max-width: 75%;
        /* Reduced from 90% */
        border: 1px solid var(--primary-yellow);
        background: rgba(243, 197, 24, 0.05);
        color: var(--primary-yellow);
        border-radius: 50px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        letter-spacing: 0.5px;
        font-weight: 600;
        box-sizing: border-box;
    }

    .btn-mobile-only:hover {
        background: var(--primary-yellow);
        color: var(--bg-black);
    }
}

/* =========================================
   New Blog Template Styles
   ========================================= */
.dot-separator {
    margin: 0 10px;
    opacity: 0.5;
}

.article-body-subheading {
    font-size: 1.5rem;
    color: white;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hr-separator {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.6);
}

.blog-category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(243, 197, 24, 0.1);
    border: 1px solid rgba(243, 197, 24, 0.3);
    color: var(--primary-yellow);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

/* Blog Cta Fix */
.blog-cta-section {
    padding: 80px 0;
}

.blog-cta-panel {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.blog-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.blog-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.blog-cta-panel .btn {
    padding: 16px 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #fff;
}