/* ===== BASE STYLES ===== */
:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --secondary: #8b5cf6;
    --secondary-light: #a78bfa;
    --accent: #10b981;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

span {
    color: var(--primary-light);
}

.dot {
    color: var(--primary);
}

.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.menu-footer {
    display: none;
}
.process-preview {
    display: none;
}

/* ===== COMPONENTS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 1px solid transparent;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 5%;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    /* THIS is important */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* IMPORTANT: fills circle properly */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover {
    color: var(--text-main);
}

.nav-links li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links li a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--text-main) !important;
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== DROPDOWN STYLES ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 10px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    list-style: none;
    padding-left: 0;
}

.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
    gap: 0 !important;
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    width: 100%;
}

.dropdown-menu li a::after {
    display: none !important;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-toggle {
        color: var(--text-main);
    }

    .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu li a:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-light) !important;
        padding-left: 20px;
    }
}


.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.2);
    top: 20%;
    right: 10%;
    animation: float 12s infinite alternate ease-in-out;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.15);
    bottom: 10%;
    left: 15%;
    animation: float 15s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15px, -25px) scale(1.05);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.subtitle {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subtitle-hero {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title span {
    background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ===== HERO BUTTON FIX ===== */
.hero-buttons {
    display: flex;
    gap: 12px; /* smaller gap */
    margin: 25px 0 20px;
    justify-content: flex-start; /* align left (more pro) */
    flex-wrap: wrap;
}

/* Make buttons smaller + tighter */
.hero-buttons .btn {
    padding: 10px 20px; /* reduced */
    font-size: 0.9rem;
    border-radius: 25px;
}

/* Primary button = strong */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.4);
}

/* Secondary button = softer */
.hero-buttons .btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    box-shadow: none;
}

/* WhatsApp icon spacing fix */
.hero-buttons .btn-secondary i {
    margin-right: 6px;
}

/* Hover refinement */
.hero-buttons .btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mockup {
    width: 100%;
    max-width: 450px;
    height: 350px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.mockup-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.icon-large {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.mockup-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
}

.services .card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

/* ===== EXPERTISE ===== */
.expertise-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.expertise-content {
    flex: 1;
}

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

.expertise-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

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

.expertise-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-box {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s infinite alternate ease-in-out;
}

.i-1 {
    top: 10%;
    left: 20%;
    color: #E34F26;
    animation-delay: 0s;
}

.i-2 {
    top: 30%;
    right: 10%;
    color: #1572B6;
    animation-delay: 1s;
}

.i-3 {
    bottom: 20%;
    left: 10%;
    color: #F7DF1E;
    animation-delay: 2s;
}

.i-4 {
    bottom: 10%;
    right: 25%;
    color: #61DAFB;
    animation-delay: 3s;
}

.i-5 {
    center: auto;
    right: 40%;
    top: 40%;
    color: #4479A1;
    animation-delay: 1.5s;
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
    z-index: 2;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.i-6 {
    top: 60%;
    left: 40%;
    color: #25D366;
    animation-delay: 0.5s;
}


/* ===== PROJECTS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.btn-card {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.btn-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.bg-grad-1 {
    background: linear-gradient(135deg, #FF6B6B, #C0392B);
}

.bg-grad-2 {
    background: linear-gradient(135deg, #1DD1A1, #10AC84);
}

.bg-grad-3 {
    background: linear-gradient(135deg, #5F27CD, #341F97);
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-link {
    color: var(--primary-light);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-link:hover {
    color: var(--primary);
}
.projects-more {
    text-align: center;
    margin-top: 40px;
}

.projects-more-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

/* hover text */
.projects-more-link:hover {
    color: var(--text-main);
}

/* underline animation */
.projects-more-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.projects-more-link:hover::after {
    width: 100%;
}

/* arrow movement */
.projects-more-link i {
    transition: transform 0.3s ease;
}

.projects-more-link:hover i {
    transform: translateX(4px);
}

/* DESKTOP ONLY */
@media (min-width: 769px) {
    .logos-grid {
        display: grid;
        grid-template-columns: repeat(2, 280px);
        justify-content: center;
        gap: 30px;
    }
}

.logo-item {
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.logo-item img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
}

.logo-desc h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

.logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
    display: flex;
    justify-content: center;
}

.contact-card {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.contact-info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info-col p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

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

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.circle-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.linkedin {
    background: #0077B5;
    color: white;
}

.linkedin:hover {
    background: #005885;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 5%;
    text-align: center;
    background: var(--bg-darker);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-seo-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-seo-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-seo-links a:hover {
    color: var(--primary);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

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

.footer-legal-links a:hover {
    color: var(--primary);
}

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

.tagline {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.85rem !important;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Add body overflow hidden class */
html.modal-open,
body.modal-open,
html.menu-open,
body.menu-open {
    overflow: hidden !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 60px;
        padding-top: 120px;
    }

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

    .title {
        font-size: 3rem;
    }

    .expertise-container {
        flex-direction: column;
    }

    .expertise-visual {
        width: 100%;
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info-col h2,
    .contact-info-col p {
        text-align: center;
    }

    .contact-info-wrap,
    .social-links {
        justify-content: center;
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Hide floating tech icons on mobile — they overlap content */
    .expertise-visual {
        display: none;
    }

    /* Ensure content takes full width when icons are hidden */
    .expertise-container {
        flex-direction: column;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(2, 6, 23, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }

    /* When menu is open */
    body.menu-open .navbar {
        background: #020617;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        /* height of navbar */
        right: -100%;
        height: calc(100vh - 70px);
        width: 100%;
        background: #020617;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 8% 30px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 8px 0 10px;
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }

    .menu-brand {
        font-weight: 700;
    }

    .menu-close {
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-links.active {
        right: 0;
        animation: fadeInMenu 0.4s ease forwards;
    }

    @keyframes fadeInMenu {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Hierarchy Dividers */
    .nav-links li:first-child {
        border-top: none;
        margin-top: 0;
    }

    .nav-links li:first-child a {
        padding-top: 12px;
    }

    .nav-links li a,
    .dropdown-toggle {
        font-size: 1.15rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        padding: 16px 0;
        width: 100%;
        color: rgba(255, 255, 255, 0.85);
        /* Increased contrast */
        transition: all 0.2s ease;
    }

    .nav-links li a:active,
    .dropdown-toggle:active {
        transform: scale(0.98);
        /* Tap feedback */
        background: rgba(255, 255, 255, 0.03);
    }

    .dropdown-toggle {
        font-weight: 600;
        color: var(--text-main);
        justify-content: space-between;
    }

    .dropdown-toggle i {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        transition: transform 0.3s ease;
    }

    /* ---- Mobile Dropdown ---- */
    .dropdown-menu {
        display: none;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin: 4px 0 0 0 !important;
        padding: 0 0 8px 15px !important;
        width: 100% !important;
        border-radius: 0 !important;
        transform: none !important;
        min-width: unset !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown.active .dropdown-toggle {
        color: var(--primary-light);
        background: transparent;
        padding-left: 0;
        border-radius: 0;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        border: none;
        width: 100%;
    }

    .dropdown-menu li a {
        display: block !important;
        padding: 10px 0 !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    /* Move Contact to bottom */
    .nav-links li:last-child {
        margin-top: 0;
        padding-top: 0;
        border-bottom: none;
    }

    .nav-links .btn-nav {
        all: unset;
        display: flex;
        align-items: center;
        padding: 16px 0;
        width: 100%;
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.85);
    }

    @keyframes slideDownFade {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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


    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hero-shapes {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 50px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
        line-height: 1.6;
    }


    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .mockup {
        transform: none;
        max-width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .cta-btns {
        flex-direction: column;
    }

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

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

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .menu-footer {
        display: flex; /* 🔥 THIS LINE */
        margin-top: auto;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        justify-content: center;
    }

    .menu-footer-logo {
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        display: flex;
        justify-content: center;
        /* horizontal center */
        align-items: center;
        /* vertical center */
        text-align: center;
        width: 100%;
        letter-spacing: 0.5px;
    }

    .footer-seo-links {
        gap: 15px;
    }

    .footer-legal-links {
        gap: 15px;
    }
}

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

    .subtitle {
        font-size: 0.95rem;
    }

    .section {
        padding: 50px 5%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

/* ===== SUB-PAGES & SEO COMPONENTS ===== */
/* ===== PROCESS DESKTOP FIX ===== */
@media (min-width: 992px) {

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 60px;
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* 🔥 PERFECT LINE ALIGNMENT */
    .process-steps::before {
        content: '';
        position: absolute;
        left: 68px; /* 🔥 FIXED */
        top: 0;
        width: 2px;
        height: 100%;
        background: rgba(255,255,255,0.08);
    }

    /* 🔥 BETTER GRID BALANCE */
    .step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    /* 🔥 NUMBER CENTER FIX */
    .step-num {
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    /* 🔥 TITLE FIX */
    .step h4 {
        margin: 0 0 6px;
        line-height: 1.4;
    }

    /* 🔥 DESCRIPTION ALIGN */
    .step p {
        margin: 0;
        line-height: 1.6;
        max-width: 500px; /* 🔥 prevents long ugly lines */
    }

    /* 🔥 HOVER EFFECT */
   /* .step:hover .step-num {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        box-shadow: 0 0 20px rgba(59,130,246,0.6);
    }*/
    .step-content h4 {
        margin: 0 0 6px;
    }

    .step-content p {
        margin: 0;
        line-height: 1.6;
        max-width: 600px;
    }
}
@media (min-width: 992px) {

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

    .process-side {
        position: relative;
    }

    .process-right {
     position: sticky;
     top: 38%;
    }

    .process-preview {
     margin-top: 20px;
     display: block;
    }

   .process-left {
     min-width: 0;
    }

    .process-indicator {
        position: sticky;
        top: 120px;
        padding: 30px;
        border-radius: 16px;
        background: rgba(255,255,255,0.03);
        backdrop-filter: blur(10px);
    }

    .process-indicator span {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
    }

    .process-indicator h4 {
        margin: 10px 0 8px;
    }

    .process-indicator p {
        font-size: 0.9rem;
        color: var(--text-muted);
    }
    .step.active .step-num {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    box-shadow: 0 0 20px rgba(59,130,246,0.6);
    }

    .step.active {
        transform: translateX(6px);
    }
    .step {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .step:hover {
        transform: translateX(6px);
    }
}
.sub-hero {
    padding: 150px 5% 80px;
    text-align: center;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-main);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.step p {
    font-size: 1rem;
    margin: 0;
}

.cta-section {
    padding: 80px 5%;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

.internal-links {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.internal-links a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: underline;
}

.services-master-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-points {
    margin-top: 15px;
    padding-left: 20px;
    color: var(--text-muted);
}

.service-points li {
    margin-bottom: 8px;
}

.service-points a {
    color: var(--primary-light);
    font-weight: 600;
}

@media (max-width: 991px) {
    .services-master-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== LOGO POPUP MODAL ===== */
.logo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.logo-modal.active {
    opacity: 1;
    visibility: visible;
}

.logo-modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 20px;
    background: white;
    padding: 20px;
    transform: scale(0.8);
    transition: 0.3s ease;
}

.logo-modal.active img {
    transform: scale(1);
}

/* Close button */
.logo-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.logo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.logo-arrow.left {
    left: 20px;
}

.logo-arrow.right {
    right: 20px;
}

/* ===== MOBILE LOGO CAROUSEL FIX ===== */
@media (max-width: 768px) {

    .logos-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        display: flex;
        justify-content: center; /* 🔥 important */
    }

    .logos-grid {
    display: flex !important;
    gap: 20px;
    padding: 0 20px; /* ✅ real spacing */
   }

    .logo-item {
        flex: 0 0 90%; /* 🔥 reduced from 95% */
        max-width: none; /* 🔥 prevents giant cards */
        margin: 0 auto;
        scroll-snap-align: center;
        padding: 30px;
        text-align: center;
    }

     .logo-dots { 
        display: flex;
        justify-content: center;
        margin-top: 10px;
        gap: 8px;
    
    }

    .logo-dots .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .logo-dots .dot.active {
        width: 20px;
        background: white;
        border-radius: 10px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    z-index: 9999;
    display: none;
    text-align: center;
}

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

.cookie-banner a {
    color: #60a5fa;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}


