/* ==========================================================================
   MASTER CSS - MUNENDRA SINGH PORTFOLIO (SERVES ALL PAGES)
   ========================================================================== */

/* --- 1. DYNAMIC THEMING VARIABLES --- */
:root[data-theme="dark"] {
    --bg-main: #030712;
    --bg-surface: #0b1329;
    --bg-card: #0f172a;
    --bg-card-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --nav-bg: rgba(3, 7, 18, 0.85);
    --nav-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

:root[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* --- 2. RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body {
    color: var(--text-secondary);
    background-color: var(--bg-main);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    text-transform: uppercase;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #2563eb;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Common Icon Colors */
.icon-blue, .stat-icon.blue, .pkg-icon.blue, .cat-icon.blue { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.icon-purple, .stat-icon.purple, .pkg-icon.purple, .cat-icon.purple { background: rgba(147, 51, 234, 0.15); color: #9333ea; }
.icon-green, .stat-icon.green, .pkg-icon.green, .cat-icon.green { background: rgba(22, 163, 74, 0.15); color: #16a34a; }
.icon-orange, .stat-icon.orange, .pkg-icon.orange, .cat-icon.orange { background: rgba(234, 88, 12, 0.15); color: #ea580c; }
.icon-red, .pkg-icon.rose { background: rgba(225, 29, 72, 0.15); color: #e11d48; }
.icon-cyan, .pkg-icon.cyan { background: rgba(8, 145, 178, 0.15); color: #0891b2; }
.icon-violet { background: rgba(124, 58, 237, 0.15); color: #7c3aed; }
.icon-teal { background: rgba(13, 148, 136, 0.15); color: #0d9488; }

/* --- 3. HEADER & NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-card-border);
    box-shadow: var(--nav-shadow);
    transition: transform 0.35s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

header.nav-hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo i {
    color: #2563eb;
    font-size: 1.5rem;
}

.logo-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--text-primary);
}

.logo-text span {
    font-size: 0.75rem;
    color: #3b82f6;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin: 0 auto;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #2563eb;
}

.nav-links a.active {
    border-bottom: 2px solid #2563eb;
    padding-bottom: 4px;
}

.nav-right-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-talk {
    border: 1px solid #2563eb;
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-talk:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-whatsapp-nav {
    border: 1px solid #16a34a;
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(22, 163, 74, 0.15);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp-nav:hover {
    background-color: #16a34a;
    color: #ffffff;
}


/* Desktop par yeh button hidden rahega */
.mobile-next_page-btn {
    display: none;
}

.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- 4. HERO SECTIONS --- */
.hero-section {
    background-color: var(--bg-main);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 80px;
    background-image: radial-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #3b82f6;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #3b82f6;
    border-radius: 50%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title span {
    color: #3b82f6;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    border: 1px solid var(--bg-card-border);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.3s;
    background: var(--bg-card);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #64748b;
}

.social-hero-links {
    display: flex;
    gap: 12px;
}

.social-hero-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.social-hero-links a:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.trust-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-right: -8px;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.laptop-screen {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--bg-card-border);
}

.laptop-screen img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.phone-screen {
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 130px;
    background: var(--bg-card);
    border: 4px solid var(--bg-card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.floating-card {
    position: absolute;
    right: -10px;
    top: 20px;
    width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--card-shadow);
    color: var(--text-primary);
}

.profile-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    box-shadow: var(--card-shadow);
}

.profile-img-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.freelance-badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.freelance-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
}

.freelance-badge div h5 { font-size: 0.75rem; font-weight: 700; }
.freelance-badge div p { font-size: 0.65rem; color: #94a3b8; }

.stats-group { display: flex; gap: 16px; }
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    box-shadow: var(--card-shadow);
}
.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.stat-info h4 { font-size: 1.1rem; font-weight: 800; line-height: 1; color: var(--text-primary); }
.stat-info p { font-size: 0.7rem; color: var(--text-secondary); margin-top: 2px; }

.hero-features-list { display: flex; gap: 20px; }
.hero-feature-item { display: flex; align-items: center; gap: 12px; }
.feature-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.feature-icon-circle.blue { background: rgba(37, 99, 235, 0.2); color: #3b82f6; }
.feature-icon-circle.green { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.feature-icon-circle.purple { background: rgba(147, 51, 234, 0.2); color: #a855f7; }
.feature-text-box h5 { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.feature-text-box p { font-size: 0.7rem; color: var(--text-secondary); }

/* --- 5. SERVICES & FEATURES SECTIONS --- */
.services-section { padding: 80px 0; background-color: var(--bg-surface); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
}
.service-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-card p { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4; }

.services-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.service-box {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}
.service-box:hover { transform: translateY(-4px); }
.service-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.service-box h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-box p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; margin-bottom: 16px; }
.service-box ul { list-style: none; margin-bottom: 20px; }
.service-box ul li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
}
.service-box ul li::before { content: '•'; position: absolute; left: 0; color: #2563eb; font-weight: bold; }
.learn-more-link { color: #2563eb; font-size: 0.8rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

.features-section { padding: 80px 0; background-color: var(--bg-main); }
.features-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.feature-card { text-align: center; padding: 16px 8px; }
.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1rem;
}
.feature-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.feature-card p { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.3; }

.f-icon-1 { background: rgba(2, 132, 199, 0.15); color: #0284c7; }
.f-icon-2 { background: rgba(5, 150, 105, 0.15); color: #059669; }
.f-icon-3 { background: rgba(124, 58, 237, 0.15); color: #7c3aed; }
.f-icon-4 { background: rgba(67, 56, 202, 0.15); color: #4338ca; }
.f-icon-5 { background: rgba(3, 105, 161, 0.15); color: #0369a1; }
.f-icon-6 { background: rgba(2, 132, 199, 0.15); color: #0284c7; }

/* --- 6. PROJECTS & PORTFOLIO SECTIONS --- */
.projects-section { padding: 80px 0; background-color: var(--bg-surface); }
.projects-header-grid { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: flex-start; }
.projects-left-title h5 { text-transform: uppercase; color: #2563eb; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.projects-left-title h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: 24px; }
.btn-outline-project {
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.btn-outline-project:hover { background-color: #2563eb; color: white; }

.projects-cards-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.project-card {
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-card);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover { transform: translateY(-4px); }
.project-img { height: 160px; background-color: #1e293b; background-size: cover; background-position: center; }
.project-info { padding: 16px; }
.project-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.project-info p { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 12px; }
.tags { display: flex; gap: 6px; }
.tag, .tech-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}
.arrow-next-btn {
    position: absolute;
    right: -20px;
    top: 40%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: var(--text-primary);
}

.portfolio-section { padding: 60px 0 80px; background-color: var(--bg-surface); }
.filter-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
#project-filters { scroll-margin-top: 100px; }
.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: #2563eb; color: #ffffff; border-color: #2563eb; }
.filter-btn i { font-size: 0.9rem; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-thumb { height: 180px; background-size: cover; background-position: center; position: relative; }
.project-content { padding: 20px; }
.category-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
.badge-blue { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.badge-green { background: rgba(22, 163, 74, 0.15); color: #16a34a; }
.badge-orange { background: rgba(234, 88, 12, 0.15); color: #ea580c; }
.badge-cyan { background: rgba(8, 145, 178, 0.15); color: #0891b2; }
.tech-tags { display: flex; gap: 6px; margin-bottom: 16px; }
.view-project-link { color: #2563eb; font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.view-project-link:hover { gap: 10px; }

/* --- 7. PROCESS SECTION --- */
.process-section { padding: 80px 0; background-color: var(--bg-main); position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; text-align: center; }
.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed var(--bg-card-border);
    z-index: 1;
}
.step-item { position: relative; z-index: 2; }
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.1rem;
    box-shadow: var(--card-shadow);
}
.step-1 .step-icon { color: #2563eb; border: 2px solid rgba(37, 99, 235, 0.3); }
.step-2 .step-icon { color: #9333ea; border: 2px solid rgba(147, 51, 234, 0.3); }
.step-3 .step-icon { color: #16a34a; border: 2px solid rgba(22, 163, 74, 0.3); }
.step-4 .step-icon { color: #ea580c; border: 2px solid rgba(234, 88, 12, 0.3); }
.step-5 .step-icon { color: #2563eb; border: 2px solid rgba(37, 99, 235, 0.3); }
.step-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.step-item p { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.3; padding: 0 4px; }
.mobile-curve-line { display: none; }

/* --- 8. PRICING & PACKAGES SECTION --- */
.pricing-section { margin-top: -80px; position: relative; z-index: 10; padding-bottom: 40px; background-color: transparent; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--bg-card-border);
    padding: 32px 24px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.starter { border-top: 4px solid #10b981; }
.pricing-card.business { border: 2px solid #2563eb; transform: scale(1.02); }
.pricing-card.business:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.professional { border-top: 4px solid #8b5cf6; }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}
.card-header-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.plan-icon.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.plan-icon.blue { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.plan-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.plan-title-box h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); letter-spacing: 0.5px; }
.plan-title-box p { font-size: 0.75rem; color: var(--text-secondary); }
.price-box { margin-bottom: 24px; }
.price-box h2 { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); display: inline-block; }
.price-box span { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.feature-list li i { font-size: 0.85rem; }
.feature-list.green-checks li i { color: #10b981; }
.feature-list.blue-checks li i { color: #2563eb; }
.feature-list.purple-checks li i { color: #8b5cf6; }

.btn-plan {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-plan.green { background: #10b981; color: white; }
.btn-plan.green:hover { background: #059669; }
.btn-plan.blue { background: #2563eb; color: white; }
.btn-plan.blue:hover { background: #1d4ed8; }
.btn-plan.purple { background: #8b5cf6; color: white; }
.btn-plan.purple:hover { background: #7c3aed; }

.all-packages-section { padding: 30px 0 60px; background-color: var(--bg-surface); }
.all-packages-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 180px repeat(5, 1fr);
    gap: 16px;
    align-items: center;
    box-shadow: var(--card-shadow);
}
.all-packages-title h4 { font-size: 0.8rem; font-weight: 800; color: #2563eb; letter-spacing: 0.5px; }
.all-packages-title h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.package-feature-item { text-align: center; border-left: 1px solid var(--bg-card-border); padding-left: 12px; }
.pkg-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 0.95rem;
}
.package-feature-item h5 { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }
.package-feature-item p { font-size: 0.68rem; color: var(--text-secondary); }

/* --- 9. ABOUT & CONTACT SECTIONS --- */
.stats-section { margin-top: -30px; position: relative; z-index: 10; }
.stats-grid {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--bg-card-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-box { display: flex; align-items: center; gap: 16px; }
.stat-icon.amber { background: rgba(217, 119, 6, 0.15); color: #d97706; }
.stat-text h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.stat-text h5 { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); margin-top: 4px; }
.stat-text p { font-size: 0.7rem; color: var(--text-secondary); }

.about-detail-section { padding: 80px 0; background-color: var(--bg-surface); }
.about-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img-box img { width: 100%; border-radius: 16px; border: 1px solid var(--bg-card-border); box-shadow: var(--card-shadow); }
.about-content h2 { font-size: 2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; line-height: 1.25; }
.about-content h2 span { color: #2563eb; }
.about-content p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.about-checklist { list-style: none; margin-top: 12px; }
.about-checklist li { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.about-checklist li i { color: #2563eb; font-size: 0.75rem; }

.skills-section { padding: 60px 0 80px; background-color: var(--bg-main); }
.skills-grid-container { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
.skills-left h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; line-height: 1.2; }
.skills-left p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.tech-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 12px; padding: 16px 12px; text-align: center; box-shadow: var(--card-shadow); transition: transform 0.3s; }
.tech-card:hover { transform: translateY(-4px); }
.tech-icon { font-size: 2rem; margin-bottom: 8px; }
.tech-card h4 { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }

.values-section { padding: 60px 0 80px; background-color: var(--bg-surface); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 12px; padding: 24px 20px; box-shadow: var(--card-shadow); transition: transform 0.3s; }
.value-card:hover { transform: translateY(-4px); }
.value-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 16px; }
.v-icon-1 { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.v-icon-2 { background: rgba(22, 163, 74, 0.15); color: #16a34a; }
.v-icon-3 { background: rgba(147, 51, 234, 0.15); color: #9333ea; }
.v-icon-4 { background: rgba(234, 88, 12, 0.15); color: #ea580c; }
.value-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.value-card p { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4; }

.edu-beyond-section { padding: 0 0 80px; background-color: var(--bg-surface); }
.edu-beyond-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.edu-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 12px; padding: 24px; box-shadow: var(--card-shadow); }
.card-header-tag { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; color: #2563eb; text-transform: uppercase; margin-bottom: 16px; }
.edu-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.edu-card p { font-size: 0.78rem; color: var(--text-secondary); margin-top: 4px; }
.edu-card span { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 4px; }
.beyond-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 10px; }
.beyond-item { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 10px; padding: 16px 8px; text-align: center; box-shadow: var(--card-shadow); }
.beyond-item i { font-size: 1.2rem; color: #2563eb; margin-bottom: 8px; }
.beyond-item h5 { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }

.contact-section { padding: 60px 0 80px; background-color: var(--bg-surface); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 16px; padding: 32px; box-shadow: var(--card-shadow); }
.card-header-flex { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: #2563eb; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.card-header-flex div h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.card-header-flex div p { font-size: 0.8rem; color: var(--text-secondary); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.input-group { position: relative; }
.input-group i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; }
.input-group textarea + i { top: 20px; transform: none; }
.form-control { width: 100%; padding: 12px 16px 12px 42px; border: 1px solid var(--bg-card-border); border-radius: 8px; background: var(--bg-main); font-size: 0.85rem; color: var(--text-primary); outline: none; transition: border-color 0.3s, background 0.3s; }
.form-control:focus { border-color: #2563eb; background: var(--bg-card); }
textarea.form-control { resize: none; height: 120px; padding-top: 14px; }
.btn-submit { background-color: #2563eb; color: white; padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: background 0.3s; margin-top: 8px; }
.btn-submit:hover { background-color: #1d4ed8; }

.get-in-touch-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.get-in-touch-box p { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 24px; }
.get-in-touch-box p span { color: #2563eb; font-weight: 600; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--card-shadow); transition: transform 0.3s; }
.info-card:hover { transform: translateX(4px); }
.info-left { display: flex; align-items: center; gap: 16px; }
.info-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-icon.green { background: rgba(22, 163, 74, 0.15); color: #16a34a; }
.info-icon.blue { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
.info-icon.purple { background: rgba(147, 51, 234, 0.15); color: #9333ea; }
.info-icon.orange { background: rgba(234, 88, 12, 0.15); color: #ea580c; }
.info-text h5 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.info-text p { font-size: 0.72rem; color: var(--text-secondary); margin: 0; }
.info-link { font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.info-link.green { color: #16a34a; }
.info-link.blue { color: #2563eb; }
.info-link.purple { color: #9333ea; }
.info-link.orange { color: #ea580c; }

.category-highlight-section { padding: 0 0 60px; background-color: var(--bg-surface); }
.category-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 16px; padding: 24px 32px; display: grid; grid-template-columns: repeat(4, 1fr) 1.5fr; gap: 20px; align-items: center; box-shadow: var(--card-shadow); }
.cat-item { text-align: center; border-right: 1px solid var(--bg-card-border); padding-right: 12px; }
.cat-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1rem; }
.cat-item h5 { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cat-item p { font-size: 0.7rem; color: var(--text-secondary); line-height: 1.3; }
.cat-cta-right { text-align: center; padding-left: 10px; }
.cat-cta-right h4 { font-size: 1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.cat-cta-right p { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 12px; }
.btn-cat-cta { background-color: #2563eb; color: white; padding: 8px 18px; border-radius: 6px; font-weight: 700; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; }

/* --- 10. CTA BANNER SECTION --- */
.cta-section { padding: 0 0 60px; background-color: var(--bg-main); }
.cta-card {
    background: linear-gradient(135deg, #030712 0%, #0b1536 100%);
    border-radius: 16px;
    padding: 30px 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #1e293b;
}
.cta-left { display: flex; align-items: center; gap: 20px; }
.cta-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3b82f6;
}
.cta-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; color: #ffffff; }
.cta-text p { color: #94a3b8; font-size: 0.85rem; }
.cta-buttons { display: flex; gap: 12px; }
.cta-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cta-feature-item { display: flex; align-items: center; gap: 10px; }
.cta-feature-item i { font-size: 1.1rem; color: #94a3b8; }
.cta-feature-item div h5 { font-size: 0.8rem; font-weight: 700; color: #ffffff; }
.cta-feature-item div p { font-size: 0.7rem; color: #94a3b8; }

.btn-primary-cta {
    background-color: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}
.btn-primary-cta:hover { background-color: #1d4ed8; }

.btn-whatsapp-cta {
    border: 1px solid #16a34a;
    color: #22c55e;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.1);
    transition: all 0.3s;
}
.btn-whatsapp-cta:hover { background: #16a34a; color: white; }

.btn-email-cta {
    border: 1px solid #334155;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    transition: all 0.3s;
}
.btn-email-cta:hover { border-color: #64748b; }

/* --- 11. FLOATING BUTTONS --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); color: #ffffff; }

#scrollTopBtn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 42px;
    height: 42px;
    background-color: #2563eb;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#scrollTopBtn.show { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover { background-color: #1d4ed8; transform: translateY(-4px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6); }

/* --- 12. STRICT ALWAYS BLACK FOOTER --- */
footer {
    background-color: #030712 !important;
    color: #94a3b8 !important;
    padding: 60px 0 24px;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-size: 0.8rem;
    margin: 16px 0;
    max-width: 280px;
    line-height: 1.5;
    color: #94a3b8 !important;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e293b;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.social-icons a:hover { background: #2563eb; border-color: #2563eb; }
.footer-column h4 { color: #ffffff !important; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 8px; }
.footer-column ul li a { font-size: 0.8rem; color: #94a3b8 !important; transition: color 0.3s; }
.footer-column ul li a:hover { color: #ffffff !important; }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; margin-bottom: 12px; color: #cbd5e1 !important; }
.contact-list i { color: #2563eb; font-size: 0.9rem; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    font-size: 0.75rem;
    color: #94a3b8 !important;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #94a3b8; }

/* --- 13. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .services-grid, .features-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid-4, .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-header-grid, .contact-grid, .about-detail-grid, .skills-grid-container, .edu-beyond-grid { grid-template-columns: 1fr; }
    .projects-cards-container, .stats-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-features { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-card.business { transform: none; }
    .all-packages-card { grid-template-columns: 1fr; text-align: center; }
    .package-feature-item { border-left: none; padding-left: 0; }
    .category-card { grid-template-columns: repeat(2, 1fr); }
    .cat-item { border-right: none; }
    .cat-cta-right { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

   @media (max-width: 768px) {
    /* --- HEADER MOBILE VIEW FIX (LARGER BUTTONS) --- */
    #site-header .container {
        padding: 12px 16px;
    }

    #site-header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .logo-text h3 {
        font-size: 0.85rem;
        white-space: nowrap;
        margin: 0;
        line-height: 1.1;
    }

    .logo-text span {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .nav-right-container {
        display: flex;
        align-items: center;
        gap: 12px; /* Buttons ke beech ka gap badhaya */
        flex-shrink: 0;
    }

     /* Hide Desktop Button */
    .btn-talk {
        display: none !important;
    }

    /* Mobile Services Pill Button (Bada size) */
    .mobile-next_page-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        padding: 3px 10px;
        border: 1.5px solid #3b82f6;
        border-radius: 24px;
        font-size: 0.82rem;
        font-weight: 700;
        color: #3b82f6;
        text-decoration: none;
        background: transparent;
        white-space: nowrap;
    }

    /* Mobile Theme/Settings Gear Button (Bada size aur clear icon) */
    .theme-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: transparent;
        border: 1.5px solid #f59e0b;
        border-radius: 50%;
        color: #f59e0b;
        font-size: 0.95rem;
        cursor: pointer;
    }

    /* Mobile Hamburger Menu Button (Bada icon) */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.3rem;
        cursor: pointer;
        color: var(--text-primary);
        padding: 4px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-surface);
        border-bottom: 1px solid var(--bg-card-border);
        flex-direction: column;
        padding: 24px 0;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        margin: 0;
        z-index: 1000;
    }


     /* --- WHATSAPP FLOAT BUTTON MOBILE VIEW (ICON ONLY) --- */
    .whatsapp-float {
                padding: 0;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                justify-content: center;
                font-size: 1.3rem;
            }

            .whatsapp-float span {
                display: none;
            }

    .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .btn-talk, .btn-whatsapp-nav { display: none; }

    .hero-grid { display: flex; flex-direction: column; gap: 30px; }
    .hero-image-container { order: -1; width: 100%; padding: 0 10px; }
    .mockup-wrapper, .profile-img-wrapper { max-width: 100%; margin: 0 auto; }
    .phone-screen { left: 5px; bottom: -15px; width: 100px; }
    .floating-card { right: 5px; top: 10px; width: 150px; padding: 8px; }
    .hero-left { order: 1; }
    .hero-title { font-size: 2.1rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

    .services-grid, .features-grid, .services-grid-4, .projects-grid, .stats-grid, .tech-grid, .values-grid, .beyond-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-box { padding: 16px 12px; }
    .service-box h3 { font-size: 0.88rem; }
    .service-box p { font-size: 0.72rem; margin-bottom: 10px; }
    .service-box ul li { font-size: 0.68rem; padding-left: 10px; }

    /* Mobile Process Zig-Zag */
    .process-steps::before { display: none; }
    .process-steps { grid-template-columns: 1fr; gap: 36px; position: relative; padding: 10px 0; }
    .mobile-curve-line { display: block; position: absolute; top: 25px; left: 0; width: 100%; height: calc(100% - 50px); z-index: 1; pointer-events: none; }
    .step-item { display: flex; flex-direction: column; max-width: 65%; z-index: 2; }
    .step-item:nth-child(odd) { align-self: flex-start; text-align: left; margin-left: 5%; }
    .step-item:nth-child(odd) .step-icon { margin: 0 0 10px 0; }
    .step-item:nth-child(even) { align-self: flex-end; text-align: right; margin-right: 5%; }
    .step-item:nth-child(even) .step-icon { margin: 0 0 10px auto; }

    .projects-cards-container, .pricing-grid, .form-grid-2 { grid-template-columns: 1fr; }
    .all-packages-card, .hero-features-list, .category-card { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .all-packages-title, .cat-cta-right { grid-column: span 2; }
    .stat-box { flex-direction: column; text-align: center; gap: 8px; }

    .cta-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cta-features { grid-template-columns: 1fr; }
    .cta-buttons { width: 100%; flex-direction: column; }
    .arrow-next-btn { display: none; }

    .info-card { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand p { max-width: 100%; }
    .social-icons, .contact-list li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}