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

body {
    font-family: 'Space Mono', 'Courier New', monospace;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Headers use DotGothic16 font */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.metrics-title,
.article-title,
.blog-card-title {
    font-family: 'DotGothic16', monospace;
    font-weight: 400;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

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

@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.logo {
    font-family: 'DotGothic16', monospace;
    font-size: 16px;
    font-weight: 400;
    background: linear-gradient(135deg, #B0FF85, #87DB1C, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}



.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #87DB1C;
}

.contact-btn {
    background: transparent;
    border: 2px solid #87DB1C;
    color: #87DB1C;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        linear-gradient(135deg, #87DB1C, #96BF47);
    color: #000;
    box-shadow: 0 4px 15px rgba(135, 219, 28, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Animated Gradient Orbs */
.hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #87DB1C 0%, transparent 70%);
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -15s;
    animation-duration: 28s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.12;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.06;
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
        opacity: 0.1;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #87DB1C;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -5s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: -2s;
    animation-duration: 19s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: -8s;
    animation-duration: 21s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: -12s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: -6s;
    animation-duration: 23s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: -15s;
    animation-duration: 16s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
        linear-gradient(135deg, #87DB1C, #96BF47);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(135, 219, 28, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    transform-style: preserve-3d;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 20%;
    height: 30%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-20deg);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-badge::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 15%;
    height: 15%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    animation: shimmer 3s ease-in-out infinite 0.5s;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(-20deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(-20deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 35%),
        linear-gradient(135deg, #87DB1C, #96BF47);
    color: #000;
    box-shadow: 0 4px 15px rgba(135, 219, 28, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                inset 0 -3px 4px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 3%;
    left: 8%;
    width: 25%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
    border-radius: 50%;
    transform: rotate(-25deg);
    opacity: 0.7;
    animation: buttonShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 18%;
    height: 18%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0.6;
    animation: buttonShimmer 4s ease-in-out infinite 1s;
    pointer-events: none;
}

@keyframes buttonShimmer {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) rotate(-25deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05) rotate(-25deg);
    }
}

.btn-primary:hover {
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.5) 0%, transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.35) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        linear-gradient(135deg, #96BF47, #87DB1C);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 219, 28, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.5),
                inset 0 -3px 5px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #87DB1C, #fff, #87DB1C, #fff);
    background-size: 400% 400%;
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: borderGradientMove 3s ease infinite;
}

@keyframes borderGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2),
                0 5px 15px rgba(135, 219, 28, 0.2);
}

.btn-secondary:hover::before {
    transform: translateX(100%);
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #222;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(to right, #87DB1C, transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 219, 28, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-icon::after {
    font-size: 2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Web Development Icon */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:nth-child(1) .feature-icon::after {
    content: "💻";
}

/* E-commerce Icon */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #87DB1C 0%, #4CAF50 100%);
}

.feature-card:nth-child(2) .feature-icon::after {
    content: "🛒";
}

/* App Development Icon */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b95 100%);
}

.feature-card:nth-child(3) .feature-icon::after {
    content: "📱";
}

/* Strategic Planning Icon */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.feature-card:nth-child(4) .feature-icon::after {
    content: "🗺️";
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.feature-card:hover .feature-icon::after {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: #000;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.content-list {
    list-style: none;
    margin: 30px 0;
}

.content-list li {
    position: relative;
    padding: 20px 25px 20px 70px;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, rgba(135, 219, 28, 0.1) 0%, rgba(135, 219, 28, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid #87DB1C;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.content-list li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(135, 219, 28, 0.15) 0%, rgba(135, 219, 28, 0.08) 100%);
    box-shadow: 0 5px 20px rgba(135, 219, 28, 0.2);
}

.content-list li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #87DB1C 0%, #4CAF50 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(135, 219, 28, 0.3);
}

.content-list li::after {
    position: absolute;
    left: 29px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.content-list li:nth-child(1)::after {
    content: "⚔️";
}

.content-list li:nth-child(2)::after {
    content: "🚀";
}

.content-right p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Quest Metrics Section */
.quest-metrics {
    padding: 150px 0;
    background: #111;
    text-align: center;
    position: relative;
}

.quest-metrics::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background:
        linear-gradient(45deg, #8B4513 0%, #A0522D  25%, #8B4513 50%, #654321 75%, #8B4513 100%),
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(160, 82, 45, 0.6) 0%, transparent 50%);
    border-radius: 20px;
    border: 8px solid #654321;
    box-shadow:
        inset 0 0 50px rgba(0,0,0,0.5),
        0 10px 30px rgba(0,0,0,0.7),
        0 0 0 4px #8B4513;
    z-index: 1;
}

.quest-metrics::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    max-width: 1180px;
    height: 78%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        rgba(101, 67, 33, 0.1) 1px,
        transparent 2px,
        transparent 20px
    ),
    repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(101, 67, 33, 0.1) 1px,
        transparent 2px,
        transparent 20px
    );
    border-radius: 15px;
    z-index: 2;
}

.quest-metrics > * {
    position: relative;
    z-index: 3;
}

.quest-metrics .container {
    padding: 60px 40px;
}

.metrics-title {
    font-size: 2.8rem;
    color: #F4E4BC;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-family: 'Georgia', serif;
}

.metrics-subtitle {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 50px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.metric-card {
    background:
        linear-gradient(135deg, #F9F6E8 0%, #F4E4BC 100%),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(139, 69, 19, 0.05) 1px,
            transparent 2px,
            transparent 24px
        );
    border-radius: 8px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    transform: rotate(-2deg);
    box-shadow:
        0 5px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border: 2px solid #D4AF37;
}

.metric-card:nth-child(2n) {
    transform: rotate(1.5deg);
}

.metric-card:nth-child(3n) {
    transform: rotate(-1deg);
}

.metric-card:nth-child(4n) {
    transform: rotate(2deg);
}

/* Pin needle effect */
.metric-card::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: linear-gradient(to bottom, #666 0%, #333 100%);
    border-radius: 1px;
    z-index: 9;
}

/* Quest Paper Pin */
.metric-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background:
        radial-gradient(circle at 30% 30%, #FF6B35 0%, #DC143C 70%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: 50%;
    box-shadow:
        0 3px 8px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.3);
    z-index: 10;
}

.metric-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.4);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: none;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.metric-label {
    font-size: 1.1rem;
    color: #654321;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-detail {
    font-size: 0.85rem;
    color: #8B4513;
    font-style: italic;
    opacity: 0.8;
}

.metrics-cta {
    margin-top: 40px;
}

/* Tech Arsenal Section */
.tech-arsenal {
    padding: 100px 0;
    background: #222;
}

.arsenal-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.arsenal-subtitle {
    font-size: 1.1rem;
    color: #87DB1C;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.arsenal-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.arsenal-section {
    margin-bottom: 50px;
}

.arsenal-section:last-child {
    margin-bottom: 0;
}

.arsenal-section-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.tech-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-card:hover {
    border-color: #87DB1C;
    background: rgba(135, 219, 28, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(135, 219, 28, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tech-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.tech-card:hover .tech-name {
    color: #87DB1C;
}

/* Mobile Responsiveness for Tech Cards */
@media (max-width: 768px) {
    .tech-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .tech-card {
        padding: 15px 10px;
    }

    .tech-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .tech-name {
        font-size: 0.8rem;
    }

    .arsenal-section-title {
        font-size: 1.3rem;
    }
}

/* Testimonials Section - DEPRECATED */
.testimonials {
    padding: 100px 0;
    background: #111;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .btn {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
}

.testimonial-image {
    height: 200px;
    background: #333;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200" fill="%23555"><rect width="400" height="200"/></svg>');
    background-size: cover;
    background-position: center;
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #87DB1C;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: #87DB1C;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left .logo {
    margin-bottom: 30px;
    display: inline-block;
    width: auto;
    font-size: 14px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    color: #87DB1C;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #87DB1C;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #87DB1C;
    transform: translateY(-2px);
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

/* Services Page Styles */
.services-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.services-grid-section {
    padding: 100px 0;
    background: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #111;
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(to right, #87DB1C, transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 219, 28, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.3;
}

.service-btn {
    margin-bottom: 30px;
    padding: 12px 25px;
    font-size: 14px;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #87DB1C;
    border-radius: 50%;
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.team-section {
    padding: 100px 0;
    background: #000;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-member.reverse {
    direction: rtl;
}

.team-member.reverse > * {
    direction: ltr;
}

.team-member-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #666 0%, #999 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.profile-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(135, 219, 28, 0.3);
}

.profile-icon {
    font-size: 8rem;
    margin-bottom: 15px;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

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

.profile-badge {
    background: rgba(0, 0, 0, 0.5);
    color: #87DB1C;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(135, 219, 28, 0.3);
}

.kyren-profile {
    background: linear-gradient(135deg, #87DB1C 0%, #96BF47 100%);
    border: 3px solid #87DB1C;
}

.marielle-profile {
    background: linear-gradient(135deg, #4CAF50 0%, #87DB1C 100%);
    border: 3px solid #4CAF50;
}

/* Guild Principles Section */
.guild-principles {
    padding: 100px 0;
    background: #111;
}

.principles-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.principles-subtitle {
    font-size: 1.1rem;
    color: #87DB1C;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.principle-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(to right, #87DB1C, transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}

.principle-card:hover {
    transform: translateY(-5px);
    background: rgba(135, 219, 28, 0.05);
    box-shadow: 0 15px 30px rgba(135, 219, 28, 0.2);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: grayscale(0.2);
}

.principle-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.principle-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Process Section */
.service-process {
    padding: 100px 0;
    background: #111;
}

.process-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #87DB1C;
    text-align: center;
    margin-bottom: 80px;
    font-style: italic;
}

.process-timeline {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    min-height: 220px;
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(135, 219, 28, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: #87DB1C;
    background: rgba(135, 219, 28, 0.05);
    box-shadow: 0 15px 30px rgba(135, 219, 28, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #87DB1C;
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: grayscale(0.2);
}

.process-step h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-connector {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #87DB1C 50%, transparent 100%);
    position: relative;
    margin: 0 -10px;
    align-self: center;
}

@media (max-width: 968px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent 0%, #87DB1C 50%, transparent 100%);
        margin: -20px 0;
    }
}

.team-member-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #fff;
}

.team-member-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Guild Team Section */
.guild-team {
    padding: 80px 0;
    background: #1a1a1a;
    text-align: center;
}

.guild-team-content {
    max-width: 800px;
    margin: 0 auto;
}

.guild-team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
}

.guild-team-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.guild-team-content p:last-child {
    margin-bottom: 0;
}

.company-description {
    padding: 100px 0;
    background: #111;
    text-align: center;
}

.description-content {
    max-width: 600px;
    margin: 0 auto;
}

.description-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #fff;
}

.description-content p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #222;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.partner-link:hover {
    transform: translateY(-5px);
}

.partner-logo {
    background: transparent;
    border: none;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.partner-logo:hover {
    transform: scale(1.1);
    background: rgba(135, 219, 28, 0.1);
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ccc;
    transition: color 0.3s ease;
    margin-top: 8px;
}

.partner-logo:hover .logo-text {
    color: #87DB1C;
}

/* Aspira Global Partner Styling */
.aspira-partner {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(135, 219, 28, 0.2);
}

.partner-logo-img {
    max-width: 60px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.aspira-partner:hover .partner-logo-img {
    filter: brightness(1.2);
}

.partner-description {
    font-size: 0.85rem;
    color: #87DB1C;
    font-weight: 600;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.aspira-partner:hover .partner-description {
    color: #96BF47;
}

/* Shopify Partners Section */
.shopify-partners {
    padding: 80px 0;
    background: #111;
    text-align: center;
}

.shopify-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.shopify-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shopify-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.shopify-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(135, 219, 28, 0.05);
    border: 2px solid rgba(135, 219, 28, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.shopify-badge:hover {
    transform: translateY(-5px);
    border-color: #87DB1C;
    background: rgba(135, 219, 28, 0.1);
    box-shadow: 0 10px 30px rgba(135, 219, 28, 0.2);
}

.shopify-logo {
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.shopify-badge:hover .shopify-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: #87DB1C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-featured {
    margin-bottom: 50px;
    text-align: center;
}

.featured-partner {
    display: inline-block;
    max-width: 400px;
}

.shopify-partner {
    background: linear-gradient(135deg, #96BF47 0%, #87DB1C 100%);
    border: 2px solid #87DB1C;
    color: #000;
    flex-direction: column;
    gap: 8px;
    height: 140px;
}

.shopify-partner .logo-text {
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
}

.partner-badge {
    font-size: 0.9rem;
    color: #000;
    opacity: 0.8;
    font-weight: 500;
}

.shopify-partner:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(135, 219, 28, 0.3);
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.contact-form-section {
    padding: 100px 0;
    background: #000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 200px;
    height: 200px;
    align-items: center;
    justify-items: center;
}

.number {
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.number:nth-child(odd) {
    animation-delay: 0.5s;
}

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

.contact-right h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.label-hint {
    color: #87DB1C;
    font-weight: 400;
    font-size: 0.9rem;
    font-style: italic;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #222;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group select {
    background: linear-gradient(135deg, #222, #333);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%2387DB1C' 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;
    padding-right: 45px;
}

.form-group select option {
    background: #222;
    color: #fff;
    padding: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #87DB1C;
    box-shadow: 0 0 0 3px rgba(135, 219, 28, 0.1);
}

.form-group select:hover {
    border-color: #87DB1C;
    box-shadow: 0 2px 8px rgba(135, 219, 28, 0.15);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.radio-question {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    cursor: pointer;
    font-size: 16px;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #87DB1C;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #87DB1C;
    border-radius: 50%;
}

.form-submit {
    align-self: flex-start;
    margin-top: 10px;
}

.contact-btn.active {
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        linear-gradient(135deg, #87DB1C, #96BF47);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(135, 219, 28, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #87DB1C;
}

/* Our Work Page Styles */
.work-hero {
    min-height: 60vh;
    padding-top: 120px;
}

.portfolio-filter {
    padding: 50px 0;
    background: #111;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ccc;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #87DB1C;
    color: #87DB1C;
    background: rgba(135, 219, 28, 0.1);
}

.portfolio-grid-section {
    padding: 80px 0;
    background: #000;
}

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

.portfolio-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(to right, #87DB1C, transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    pointer-events: none;
    z-index: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

.image-placeholder::after {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ecommerce-bg {
    background: linear-gradient(135deg, #4CAF50 0%, #87DB1C 100%);
}

.ecommerce-bg::after {
    content: "🛒";
}

.webapp-bg {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
}

.webapp-bg::after {
    content: "💻";
}

.mobile-bg {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.mobile-bg::after {
    content: "📱";
}

.branding-bg {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.branding-bg::after {
    content: "🎨";
}

/* Hover effects for portfolio cards */
.portfolio-card:hover .image-placeholder::after {
    transform: scale(1.1);
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tag {
    background: #87DB1C;
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-studies {
    padding: 100px 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
}

.case-study {
    margin-bottom: 80px;
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case-study.reverse .case-study-content {
    direction: rtl;
}

.case-study.reverse .case-study-content > * {
    direction: ltr;
}

.case-study-text h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.case-study-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.case-study-results {
    list-style: none;
    margin-bottom: 30px;
}

.case-study-results li {
    position: relative;
    padding-left: 25px;
    color: #ccc;
    margin-bottom: 10px;
}

.case-study-results li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #87DB1C;
    font-weight: bold;
}

.case-study-image {
    height: 300px;
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 50%, #87DB1C 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
    z-index: 1;
}

.case-image-placeholder::after {
    content: "📈";
    position: relative;
    z-index: 2;
    font-size: 4rem;
    opacity: 0.8;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.case-study:hover .case-image-placeholder::after {
    transform: scale(1.05);
    opacity: 1;
}

.work-cta {
    padding: 100px 0;
    background: #222;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Admin Dashboard Styles */
.admin-main {
    display: flex;
    min-height: 100vh;
    background: #000;
}

.admin-sidebar {
    width: 280px;
    background: #111;
    border-right: 2px solid #333;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.sidebar-content {
    padding: 0 25px;
}

.sidebar-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.sidebar-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.sidebar-header p {
    color: #87DB1C;
    margin: 0;
    font-size: 0.9rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 10px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-item:hover {
    background: rgba(135, 219, 28, 0.1);
    color: #87DB1C;
    border-color: rgba(135, 219, 28, 0.3);
}

.nav-item.active {
    background: rgba(135, 219, 28, 0.15);
    color: #87DB1C;
    border-color: #87DB1C;
}

.nav-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.nav-text {
    font-weight: 500;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
    max-width: calc(100% - 280px);
}

.sidebar-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logout-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    text-align: left;
}

.sidebar-footer .logout-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.dev-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 500;
}

.notice-icon {
    font-size: 1.1rem;
}

.section-content {
    display: none;
}

.section-content.active {
    display: block;
}

/* Admin Mobile Responsiveness */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 2px solid #333;
    }

    .admin-content {
        margin-left: 0;
        max-width: 100%;
        padding: 20px;
    }

    .admin-main {
        flex-direction: column;
    }

    .sidebar-nav {
        flex-direction: row;
        gap: 5px;
        padding: 0 10px;
    }

    .nav-item {
        flex: 1;
        justify-content: center;
        padding: 12px 8px;
        text-align: center;
    }

    .nav-text {
        font-size: 0.85rem;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

/* Contact Submissions Styles */
.submissions-grid {
    display: grid;
    gap: 20px;
}

.submission-card {
    background: #222;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 25px;
    transition: border-color 0.3s ease;
}

.submission-card:hover {
    border-color: #87DB1C;
}

.submission-card.unread {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.submission-card.read {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.submission-card.responded {
    border-color: #87DB1C;
    background: rgba(135, 219, 28, 0.1);
}

.submission-card.archived {
    border-color: #666;
    background: rgba(102, 102, 102, 0.1);
    opacity: 0.7;
}

.status-select {
    background: linear-gradient(135deg, #333, #444);
    color: #fff;
    border: 2px solid #555;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 120px;
}

.status-select:hover {
    border-color: #87DB1C;
    box-shadow: 0 2px 8px rgba(135, 219, 28, 0.2);
    transform: translateY(-1px);
}

.status-select:focus {
    outline: none;
    border-color: #87DB1C;
    box-shadow: 0 0 0 3px rgba(135, 219, 28, 0.2);
}

.status-select option {
    background: #333;
    color: #fff;
    padding: 8px;
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.submission-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.submission-date-header {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
}

.submission-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.3rem;
}

.submission-date {
    color: #888;
    font-size: 0.9rem;
}

.submission-details {
    margin-bottom: 20px;
}

/* Filters Section */
.filters-section {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filters-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.filter-count {
    color: #888;
    font-weight: 400;
    font-size: 0.9rem;
}

.filter-count.filtered {
    color: #87DB1C;
    font-weight: 500;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-select,
.filter-input {
    background: linear-gradient(135deg, #333, #444);
    color: #fff;
    border: 2px solid #555;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover,
.filter-input:hover {
    border-color: #87DB1C;
    box-shadow: 0 2px 6px rgba(135, 219, 28, 0.15);
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: #87DB1C;
    box-shadow: 0 0 0 3px rgba(135, 219, 28, 0.2);
}

.filter-select option {
    background: #333;
    color: #fff;
    padding: 6px;
}

.btn-tertiary {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    color: #87DB1C;
    border-color: #87DB1C;
    background: rgba(135, 219, 28, 0.1);
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #333, #444);
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ccc;
    font-size: 14px;
}

.file-upload-label:hover {
    border-color: #87DB1C;
    background: linear-gradient(135deg, #444, #555);
    color: #87DB1C;
    box-shadow: 0 2px 8px rgba(135, 219, 28, 0.15);
}

.file-upload-text {
    flex: 1;
}

.file-upload-icon {
    font-size: 18px;
    opacity: 0.7;
}

.file-preview {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
    border: 2px solid #333;
}

.preview-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    display: block;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-image:hover {
    background: rgba(255, 107, 107, 1);
    transform: scale(1.1);
}

.form-hint {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.submission-details p {
    color: #ccc;
    margin: 8px 0;
    line-height: 1.5;
}

.submission-details strong {
    color: #87DB1C;
}

.submission-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Portfolio Management Styles */
.project-form {
    background: #222;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.project-form h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.project-form .form-group {
    margin-bottom: 20px;
}

.project-form label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.project-form input,
.project-form select,
.project-form textarea {
    width: 100%;
    background: #333;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
    outline: none;
    border-color: #87DB1C;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.project-card {
    background: #222;
    border: 2px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.project-card:hover {
    border-color: #87DB1C;
}

.project-preview {
    height: 200px;
}

.project-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.project-category {
    color: #87DB1C;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.project-desc {
    color: #ccc;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.project-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

/* Button Styles */
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
    border: 2px solid #dc3545;
}

.btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
}

/* Admin Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

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

.bg-pattern {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, #87DB1C 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #87DB1C 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #87DB1C 0%, transparent 50%);
    opacity: 0.05;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(1deg); }
    50% { transform: translate(10px, -5px) rotate(-1deg); }
    75% { transform: translate(-5px, 10px) rotate(0.5deg); }
}

.login-card {
    background: #111;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header .logo {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.login-header h1 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.login-header p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
}

.login-form label {
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    background: #222;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #87DB1C;
    box-shadow: 0 0 0 3px rgba(135, 219, 28, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ccc;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #222;
    border: 2px solid #333;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #87DB1C;
    border-color: #87DB1C;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    color: #87DB1C;
}

.login-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 12px;
    color: #ff6b6b;
    font-size: 0.9rem;
}

.error-icon {
    font-size: 1.1rem;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.back-link {
    color: #87DB1C;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #96BF47;
}

.demo-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .nav {
        gap: 20px;
    }

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

    .services-hero,
    .about-hero,
    .contact-hero,
    .work-hero {
        padding-top: 140px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .team-member {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .team-member.reverse {
        direction: ltr;
    }

    .profile-circle {
        width: 250px;
        height: 250px;
    }

    .description-content h2 {
        font-size: 2rem;
    }

    .partners-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .partner-logo {
        padding: 30px 15px;
        height: 100px;
    }

    .shopify-title {
        font-size: 2rem;
    }

    .shopify-badges {
        flex-direction: column;
        gap: 30px;
    }

    .shopify-badge {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .shopify-logo {
        max-width: 150px;
        max-height: 50px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Contact Form Mobile Styles */
    .contact-form-section {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: 1;
        max-width: 100%;
    }

    .label-hint {
        display: block;
        margin-top: 2px;
    }

    /* Quest Metrics Mobile Styles */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .metrics-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-right h2 {
        font-size: 1.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom {
        gap: 30px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

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

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-study.reverse .case-study-content {
        direction: ltr;
    }

    .case-study-text h3 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .submission-actions,
    .project-actions {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

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

    .login-card {
        margin: 20px;
        padding: 30px;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }

    .login-form input[type="text"],
    .login-form input[type="password"] {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Blog Management Styles */
.blog-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color, #333);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-card {
    position: relative;
    overflow: visible;
}

.blog-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.blog-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-published {
    background: #d4f4dd;
    color: #2e7d32;
}

.status-draft {
    background: #fff3cd;
    color: #856404;
}

.status-archived {
    background: #f0f0f0;
    color: #666;
}

.blog-featured {
    color: #ffa500;
    font-size: 0.875rem;
}

.blog-date {
    font-size: 0.75rem;
    color: #666;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.btn-tertiary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.btn-tertiary:hover {
    background: #e0e0e0;
}

#blogContent {
    font-family: monospace;
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

/* WYSIWYG Editor Styles */
.ql-editor {
    font-size: 14px !important;
    line-height: 1.6 !important;
    min-height: 200px;
}

.ql-toolbar {
    border: 1px solid #ddd !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
    background: #f9f9f9;
}

.ql-container {
    border: 1px solid #ddd !important;
    border-radius: 0 0 8px 8px !important;
    font-family: inherit !important;
}

.ql-editor.ql-blank::before {
    font-style: italic;
    color: #999;
}

.form-help {
    display: block;
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}