html {
    zoom: 1.1;
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 160px !important;
}

:root {
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --neon-green: #c5ff00;
    --neon-green-hover: #a3d900;
    --text-main: #ffffff;
    --text-muted: #999999;
    --border-color: #333333;

    --font-main: 'Outfit', sans-serif;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Staggered reveal for process steps */
.process-step.reveal:nth-child(even) {
    transition-delay: 0.2s;
}


/* Entrance Animations on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}


/* Hover & Interaction Animations */
.service-card,
.feature-card,
.testimonial-card,
.faq-item,
.process-step,
.contact-form {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background-color 0.4s ease;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 255, 0, 0.1);
}

.faq-item:hover,
.process-step:hover {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(197, 255, 0, 0.3);
}

/* Special glow for icon wrappers on hover */
.service-card:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}


* {

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--neon-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 255, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn-dark {
    background-color: #2a2a2a;
    color: var(--text-main);
}

.btn-dark:hover {
    background-color: #333;
}

/* Header */
.navbar {
    position: sticky;
    top: 20px;
    width: 92%;
    max-width: 1200px;
    margin: 20px auto 0;
    background-color: rgba(13, 18, 36, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 14px 30px;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--neon-green);
    color: #000;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-green);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content,
.trusted-by {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.hero-wave {
    height: 300px;
    background: radial-gradient(ellipse at bottom, rgba(197, 255, 0, 0.1) 0%, transparent 70%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.5;
}

.trusted-by {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.trusted-by p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-carousel {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.6;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 0;
    scroll-margin-top: 100px;
}

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

.service-card {
    background-color: #1a1b26;
    /* Dark navy */
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Variant: Blue */
.variant-blue:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.variant-blue .icon-wrapper {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.variant-blue .learn-more {
    color: #3b82f6;
}

/* Variant: Purple */
.variant-purple:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.variant-purple .icon-wrapper {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.variant-purple .learn-more {
    color: #8b5cf6;
}

/* Variant: Green */
.variant-green:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.variant-green .icon-wrapper {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.variant-green .learn-more {
    color: #10b981;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

.learn-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.learn-more:hover {
    opacity: 0.8;
}

.learn-more i {
    transition: transform 0.3s;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

/* Features */
.features {
    padding: 80px 0;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-title i {
    color: var(--neon-green);
    font-size: 1.5rem;
}

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

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.quote {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}

.client-profile h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--neon-green);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
    /* arbitrary max height for transition */
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-logo {
    width: 48px;
    height: 48px;
    background-color: var(--neon-green);
    color: #000;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Contact Form */
.contact {
    padding: 60px 0 100px;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 15px;
    background-color: #111;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

select:focus {
    outline: none;
    border-color: var(--neon-green);
}

select option {
    background-color: #1a1a1a;
    color: var(--text-main);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--neon-green);
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
}

.custom-checkbox input:checked~.checkmark::after {
    content: '✓';
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.custom-checkbox input:checked~span:not(.checkmark) {
    color: var(--text-main);
}

.budget-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.slider-container {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    outline: none;
    margin-bottom: 15px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-green);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 255, 0, 0.5);
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

#budgetValue {
    color: var(--neon-green);
    font-weight: 600;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* Appriqa Custom Footer */
.appriqa-footer {
    background-color: var(--bg-dark);
    /* Keeps the overall dark theme color */
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    padding-right: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.logo-icon.green-icon {
    background-color: var(--neon-green);
    color: #000;
    border-radius: 8px;
    width: 36px;
    height: 36px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* Rounded squares */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background-color: var(--neon-green);
    color: #000;
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-main);
}

.footer-links-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--neon-green);
}

.appriqa-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.appriqa-footer-bottom .copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--neon-green);
}

/* Process Page Styles */
.process-intro {
    padding: 30px 0 10px;
    background-color: var(--bg-dark);
}

.process-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.process-pill {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.process-grid-section {
    padding: 40px 0 100px;
    background-color: var(--bg-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.process-step {
    padding: 60px 40px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--neon-green);
    line-height: 0.8;
    opacity: 0.9;
}

.step-title {
    font-size: 1.4rem;
    color: var(--text-main);
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    flex-grow: 1;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive adjustments for process grid */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: none;
    }

    .process-step {
        border-left: 1px solid var(--border-color);
        border-top: 1px solid var(--border-color);
        padding: 40px 20px;
    }
}

/* About Us & Process Hero Section Styles */
.about-hero,
.process-hero {
    position: relative;
    background-image: url('about-hero-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 80px;
    overflow: hidden;
}

.about-hero::before,
.process-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #111111 0%, rgba(17, 17, 17, 0) 15%, rgba(17, 17, 17, 0) 85%, #111111 100%),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.about-hero-content,
.process-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1,
.process-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-hero p,
.process-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {

    .about-hero h1,
    .process-hero h1 {
        font-size: 3rem;
    }

    .about-hero p,
    .process-hero p {
        font-size: 1.05rem;
    }
}

/* Appriqa Custom Header */
.appriqa-nav {
    border-bottom: none;
    background-color: transparent;
    backdrop-filter: none;
    padding: 20px 0;
}

.nav-container.pill-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    background-color: rgba(17, 20, 36, 0.88);
    /* More opaque for readability */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pill-nav .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-icon.blue-icon {
    background-color: #3b82f6;
    /* Blue icon */
    color: #ffffff;
    border-radius: 8px;
    width: 36px;
    height: 36px;
}

.logo-text {
    display: none !important;
    /* Hide text next to logo globally */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sign-in {
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s;
}

.sign-in:hover {
    color: #ffffff;
}

.btn-green {
    background-color: #10b981;
    /* Emerald green */
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-main);
    display: inline-block;
}

.btn-green:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .navbar .btn {
        display: none;
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .appriqa-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== 4-Column Footer Grid (Resources removed) ===== */
.footer-grid-4col {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

@media (max-width: 768px) {
    .footer-grid-4col {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Legal Pages Styles ===== */
.legal-content {
    padding: 80px 0 100px;
    background-color: var(--bg-dark);
}

.legal-body {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px;
}

.legal-updated {
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section h3 {
    font-size: 1.15rem;
    color: var(--neon-green);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 0;
}

.legal-section ul li {
    color: var(--text-muted);
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 1.2rem;
    font-weight: 700;
}

.legal-section a {
    color: var(--neon-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    opacity: 0.8;
}

.legal-contact-info {
    background-color: rgba(197, 255, 0, 0.05);
    border: 1px solid rgba(197, 255, 0, 0.15);
    border-radius: 12px;
    padding: 25px;
    margin-top: 15px;
}

.legal-contact-info p {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.legal-contact-info p:last-child {
    margin-bottom: 0;
}

.legal-contact-info i {
    color: var(--neon-green);
    margin-right: 8px;
    width: 20px;
}

@media (max-width: 768px) {
    .legal-body {
        padding: 30px 20px;
    }
}

/* ===== Cookie Table ===== */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table thead {
    background-color: rgba(197, 255, 0, 0.08);
}

.cookie-table th {
    text-align: left;
    padding: 14px 16px;
    color: var(--neon-green);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.cookie-table td {
    padding: 12px 16px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cookie-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* ===== GDPR Rights Grid ===== */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gdpr-right-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: border-color 0.3s, transform 0.3s;
}

.gdpr-right-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-4px);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 255, 0, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-green);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.gdpr-right-card h3 {
    font-size: 1.05rem;
    color: var(--text-main) !important;
    margin-bottom: 8px;
    margin-top: 0 !important;
    border: none !important;
    padding: 0 !important;
}

.gdpr-right-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== Features Page ===== */
.features-section {
    padding: 80px 0;
}

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

.feature-showcase-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.feature-showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(197, 255, 0, 0.08);
}

.feature-showcase-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(197, 255, 0, 0.1);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-green);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-showcase-card:hover .feature-showcase-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-showcase-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-showcase-card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-detail-list {
    margin: 0;
    padding: 0;
}

.feature-detail-list li {
    padding: 6px 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-detail-list li i {
    color: var(--neon-green);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .features-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Integrations Section ===== */
.integrations-section {
    padding: 80px 0;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.integration-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.integration-card i {
    font-size: 2rem;
    color: var(--neon-green);
}

.integration-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== API Section ===== */
.api-section {
    padding: 80px 0;
}

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

.api-feature {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.api-feature:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.api-feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(197, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.api-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.api-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== About Page — Enhanced Sections ===== */
.about-content-section {
    padding: 80px 0;
}

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

.about-mission-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s, border-color 0.3s;
}

.about-mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.about-mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.about-mission-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.about-stat {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: transform 0.3s, border-color 0.3s;
}

.about-stat:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    display: block;
    margin-bottom: 8px;
}

.about-stat .stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-values-section {
    padding: 80px 0;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

.about-value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.about-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.about-value-card i {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    display: block;
}

.about-value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.about-value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-mission-grid {
        grid-template-columns: 1fr;
    }

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

/* ===== WhatsApp Floating Chat Button ===== */
.whatsapp-float {
    display: none !important;
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

/* ===== Service Detail Pages ===== */
.service-detail-section {
    padding: 80px 0;
}

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

.service-detail-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(197, 255, 0, 0.08);
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(197, 255, 0, 0.1);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-green);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-detail-card:hover .service-detail-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-detail-card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-list {
    margin: 0;
    padding: 0;
}

.service-detail-list li {
    padding: 6px 0 6px 20px;
    color: #cbd5e1;
    font-size: 0.9rem;
    position: relative;
}

.service-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 80px 0;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* ===== Logo Image ===== */
.logo-img {
    height: 64px !important;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.footer-brand .logo-img {
    height: 64px !important;
}

/* ===== Contact Page — Enhanced Sections ===== */
.contact-about-section {
    padding: 100px 0 60px;
}

.contact-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-about-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-about-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.contact-about-card i {
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-bottom: 18px;
    display: block;
}

.contact-about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.contact-about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .contact-about-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact — Mini Process */
.contact-process-section {
    padding: 60px 0;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.contact-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.contact-process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.contact-process-step:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.contact-process-step .step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.contact-process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.contact-process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .contact-process-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact — Project Type FAQ (Hover Expand) */
.contact-faq-section {
    padding: 60px 0;
}

.project-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-type-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.3s,
        box-shadow 0.3s;
    overflow: hidden;
}

.project-type-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-green);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(197, 255, 0, 0.06);
}

.project-type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.project-type-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-green);
    font-size: 1.3rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.project-type-card:hover .project-type-icon {
    transform: rotate(10deg) scale(1.1);
}

.project-type-card h3 {
    font-size: 1.2rem;
    color: var(--text-main);
}

.project-type-card>p.type-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    transition: margin-bottom 0.3s;
}

.project-type-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding-top 0.3s ease,
        opacity 0.4s ease;
    opacity: 0;
}

.project-type-card:hover .project-type-desc {
    max-height: 300px;
    padding-top: 15px;
    opacity: 1;
}

.project-type-card:hover>p.type-subtitle {
    margin-bottom: 0;
}

.project-type-desc p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.project-type-desc ul {
    margin: 0;
    padding: 0;
}

.project-type-desc ul li {
    padding: 4px 0 4px 20px;
    color: #cbd5e1;
    font-size: 0.85rem;
    position: relative;
}

.project-type-desc ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.75rem;
}

.expand-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(197, 255, 0, 0.5);
    margin-top: 12px;
    transition: opacity 0.3s;
}

.project-type-card:hover .expand-hint {
    opacity: 0;
}

/* Contact — Form Heading */
.contact-form-section {
    padding: 60px 0 100px;
    background-color: #141414;
    border-top: 1px solid var(--border-color);
}

.contact-form-section .section-header {
    margin-bottom: 40px;
}

/* ===== Toast Notification ===== */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: #1a1a1a;
    border: 1px solid var(--neon-green);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 255, 0, 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.4s ease;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.toast-error {
    border-color: #ef4444;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-notification .toast-icon {
    background-color: rgba(197, 255, 0, 0.15);
    color: var(--neon-green);
}

.toast-notification.toast-error .toast-icon {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.toast-text h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--text-main);
}

.toast-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .toast-notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

/* ===== Work Portfolio Section ===== */
.work {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}

.work-card {
    position: relative;
    background-color: rgba(13, 18, 36, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 16px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 255, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(197, 255, 0, 0.1);
}

.work-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6 / 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
}

.work-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.work-card:hover .work-mockup {
    transform: scale(1.05);
}

.work-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    z-index: 5;
}

.work-card:hover .work-hover-overlay {
    opacity: 1;
}

.work-btn-primary,
.work-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.work-btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.work-btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.work-btn-outline {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.work-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.work-info {
    padding: 20px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.work-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: inline-block;
}

.badge-saas {
    background-color: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.badge-edu {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-pet {
    background-color: rgba(236, 72, 153, 0.15);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.25);
}

.badge-ai {
    background-color: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-ecommerce {
    background-color: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-fintech {
    background-color: rgba(99, 102, 241, 0.15);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.work-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.work-style {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}



/* Mobile Toggle & Responsive Menu Styles */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    transition: color 0.3s;
}

.mobile-nav-toggle:hover {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: calc(100% + 60px);
        position: absolute;
        top: calc(100% + 15px);
        left: -30px;
        background-color: rgba(13, 18, 36, 0.96);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 15px 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        z-index: 999;
        gap: 0;
    }

    .nav-links.mobile-active {
        display: flex !important;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .header-actions {
        display: none !important;
    }
}

/* ===== Contact Form Social Handles ===== */
.contact-social-handles {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.contact-social-handles span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.social-handles-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.handle-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.handle-link i {
    font-size: 1.1rem;
}

.handle-link.github:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.handle-link.whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.handle-link.youtube:hover {
    background-color: rgba(255, 0, 0, 0.15);
    border-color: #FF0000;
    color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.handle-link.linkedin:hover {
    background-color: rgba(10, 102, 194, 0.15);
    border-color: #0A66C2;
    color: #0A66C2;
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   🔒 PREMIUM DARK-TECH ADMIN PORTAL STYLES (GLASSMORPHISM)
   ========================================================================== */

/* 1. Floating Admin Button */
.admin-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background-color: rgba(13, 18, 36, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.admin-float-btn i {
    color: var(--neon-green);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.admin-float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--neon-green);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 255, 0, 0.2);
}

.admin-float-btn:hover i {
    transform: rotate(15deg);
}

/* 2. Admin Modal Overlay */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    padding: 40px 15px;
}

.admin-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 3. Admin Modal Card */
.admin-modal-card {
    background-color: rgba(17, 18, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 40px rgba(197, 255, 0, 0.05);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-modal-overlay.show .admin-modal-card {
    transform: translateY(0) scale(1);
}

/* 4. Modal Close Button */
.admin-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.admin-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* 5. Modal Header */
.admin-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-modal-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(197, 255, 0, 0.1);
    color: var(--neon-green);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(197, 255, 0, 0.1);
}

.admin-modal-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.admin-modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 6. Form Fields & Wrappers */
.admin-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-input-wrapper i.fa-regular,
.admin-input-wrapper i.fa-solid {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.95rem;
}

.admin-input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.admin-input-wrapper input:focus {
    outline: none;
    border-color: var(--neon-green);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(197, 255, 0, 0.1);
}

/* Password Toggle Icon inside wrapper */
.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #fff;
}

/* 7. Forgot Password Link */
.admin-form-options {
    display: flex;
    justify-content: flex-end;
}

.admin-forgot-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.admin-forgot-link:hover {
    color: var(--neon-green);
}

/* 8. Sign-In Button */
.admin-login-submit {
    background-color: var(--neon-green);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.admin-login-submit:hover {
    background-color: var(--neon-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 255, 0, 0.3);
}

.admin-login-submit:active {
    transform: translateY(0);
}

/* ==========================================================================
   📊 WORK MANAGEMENT CMS DASHBOARD STYLES (GLASSMORPHISM)
   ========================================================================== */

/* 1. Dashboard Modal Enlargement */
.admin-modal-card.dashboard-mode {
    max-width: 480px;
    width: 95%;
    transition: max-width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 2. Grid Container */
.admin-dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    animation: fadeIn 0.4s ease;
}

@media (max-width: 768px) {
    .admin-dashboard-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .admin-modal-card.dashboard-mode {
        max-width: 440px;
    }
}

/* 3. Dropdown Select Elements styling */
.admin-select-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-main);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.admin-select-input:focus {
    outline: none;
    border-color: var(--neon-green);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(197, 255, 0, 0.1);
}

/* Custom Dropdown Arrow */
.admin-input-wrapper select+i.fa-solid {
    pointer-events: none;
}

.admin-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.admin-select-input option {
    background-color: #11121c;
    color: #fff;
    padding: 10px;
}

/* 4. Scrolling Current Work List */
.admin-work-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-work-count-badge {
    background-color: rgba(197, 255, 0, 0.1);
    color: var(--neon-green);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.admin-work-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar for list */
.admin-work-list::-webkit-scrollbar {
    width: 6px;
}

.admin-work-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
}

.admin-work-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.admin-work-list::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* 5. Project Row Cards */
.admin-project-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.admin-project-row:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(2px);
}

.admin-project-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-project-thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-project-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-project-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.admin-project-cat {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.admin-project-delete {
    background: none;
    border: none;
    color: rgba(255, 70, 70, 0.7);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.admin-project-delete:hover {
    color: #ff3838;
    background-color: rgba(255, 56, 56, 0.1);
    transform: scale(1.05);
}

.admin-project-edit {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.admin-project-edit:hover {
    color: var(--neon-green);
    background-color: rgba(197, 255, 0, 0.1);
    transform: scale(1.05);
}

.admin-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-tab-btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.admin-tab-btn.active {
    color: var(--neon-green) !important;
    background-color: rgba(197, 255, 0, 0.1) !important;
    border: 1px solid rgba(197, 255, 0, 0.25) !important;
}

/* Custom scrollbar for admin panels scroll */
.admin-dashboard-panels::-webkit-scrollbar {
    width: 6px;
}

.admin-dashboard-panels::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
}

.admin-dashboard-panels::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.admin-dashboard-panels::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* Meet Our Team Section */
.team-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 255, 0, 0.4);
    box-shadow: 0 10px 40px rgba(197, 255, 0, 0.15);
}

.team-photo-container {
    height: 320px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.team-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.team-card:hover .team-photo-container img {
    transform: scale(1.05);
    opacity: 0.9;
}

.photo-placeholder {
    color: var(--text-muted);
    font-size: 1rem;
}

.team-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.team-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.team-text .team-role {
    font-size: 0.9rem;
    color: #00d2ff;
    display: block;
    margin-bottom: 8px;
}

.team-text .team-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 200px;
}

.team-linkedin {
    background-color: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.team-linkedin:hover {
    background-color: #00d2ff;
    color: #000;
}