:root {
    /* Light Mode Variables */
    --bg-topbar: #1a1a1a;
    --bg-nav: #ffffff;
    --text-main: #333333;
    --accent: #007bff;
    /* Professional Blue */
    --offer-bg: #fff3cd;
    --border: #eeeeee;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    /* Dark Mode Variables */
    --bg-topbar: #000000;
    --bg-nav: #121212;
    --text-main: #f4f4f4;
    --accent: #00d4ff;
    --offer-bg: #2c2c2c;
    --border: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-nav);
    color: var(--text-main);
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h2 {
    margin-top: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* header wrapper */

.header-wrapper {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    z-index: 2000;
    /* Ensure it stays above Hero content */
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --- 1. Top Bar & Offer Banner --- */
.top-bar {
    background: var(--bg-topbar);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--accent);
    margin-right: 5px;
}

.offer-banner {
    background: var(--offer-bg);
    color: #856404;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

[data-theme="dark"] .offer-banner {
    color: #ffeeba;
}

.social-links a {
    margin-left: 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

/* --- 2. Main Navigation --- */
.main-nav {
    position: sticky;
    width: 100%;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- 3. Professional Dropdown --- */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-nav);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--border);
    padding-left: 25px;
}

/* --- 4. Actions & Toggle --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

#theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
}

.btn-cta {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* Responsive Mobile Menu (Placeholder) */
@media (max-width: 768px) {

    .nav-links,
    .contact-info,
    .offer-banner {
        display: none;
    }
}

/* --- Bottom Navigation Styling --- */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    /* Floating style */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    height: 65px;
    background: rgba(255, 255, 255, 0.8);
    /* Light mode glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: none;
    /* Hidden on Desktop */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

/* Dark Mode Adjustment for Bottom Nav */
[data-theme="dark"] .bottom-nav {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.bottom-nav-item.active {
    color: var(--accent);
}

.bottom-nav-item:hover {
    color: var(--accent);
}

/* --- Show only on Mobile & Tablet --- */
@media (max-width: 992px) {
    .bottom-nav {
        display: flex;
    }

    /* Add padding to body so content isn't hidden behind the bar */
    body {
        padding-bottom: 100px;
    }
}

/* Animation for active item */
.bottom-nav-item.active i {
    transform: translateY(-2px);
    text-shadow: 0 4px 10px rgba(9, 132, 227, 0.3);
}



/* hero section */
/* --- Hero Container & Background Logic --- */
.hero-section {
    position: relative;
    padding: 40px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-nav);
    transition: background-color 0.4s ease;
}

/* Background Image Layer: Separated to avoid blurring the foreground */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?auto=format&fit=crop&w=1920&q=60');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.05;
    /* Faint in light mode */
    transition: opacity 0.4s ease, filter 0.4s ease;
}

[data-theme="dark"] .hero-bg-layer {
    opacity: 0.4;
    filter: brightness(0.3) contrast(1.2);
    /* Darkened for readability */
}

.hero-container {
    position: relative;
    z-index: 5;
    /* Sit above the background layer */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* --- Hero Content Styling --- */
.hero-content h1 {
    color: var(--text-main);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin: 25px 0 40px;
}

/* Pillar Cards (Glassmorphism) */
.trust-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.pillar {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

[data-theme="dark"] .pillar {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pillar i {
    color: var(--accent);
    font-size: 1.4rem;
}

.pillar strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
}

.pillar span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- Photo & Floating Icons --- */
.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.main-photo {
    width: 100%;
    height: auto;
    border-radius: 24px;
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* No blur on the actual photo */
}

/* Floating Tech Icons */
.tech-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: var(--accent);
    font-size: 1.5rem;
    animation: floatAnim 3s ease-in-out infinite;
}

[data-theme="dark"] .tech-icon {
    background: #1a1a1a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.icon-react {
    top: 10%;
    left: -25px;
    color: #61dbfb;
}

.icon-next {
    top: 40%;
    right: -25px;
    color: var(--text-main);
    animation-delay: 0.5s;
}

.icon-shopify {
    bottom: 15%;
    left: -10px;
    color: #96bf48;
    animation-delay: 1s;
}

.icon-js {
    top: -20px;
    right: 15%;
    color: #f7df1e;
    animation-delay: 1.5s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p,
    .trust-pillar-grid,
    .hero-cta-group {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    /* Hide heavy visuals on mobile for speed */
}

/* Buttons */
.btn-hire {
    background: var(--accent);
    color: white;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 700;
}

.btn-book {
    background: var(--border);
    color: var(--text-main);
    padding: 16px 30px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

[data-theme="dark"] .btn-book {
    background: #2d3436;
    color: white;
}

/* hero section ends */

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.2);
}

.btn-secondary {
    border: 2px solid var(--border);
    padding: 13px 35px;
    border-radius: 8px;
    font-weight: 700;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Visual Section (The Code Card) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.code-card {
    background: #2d3436;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    transform: perspective(1000px) rotateY(-10deg);
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff7675;
}

.yellow {
    background: #fdcb6e;
}

.green {
    background: #55efc4;
}

.c-1 {
    color: #81ecec;
}

/* const */
.c-2 {
    color: #fab1a0;
}

/* strings */
.c-3 {
    color: #55efc4;
}

/* boolean */

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-nav);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: -20px;
    right: 0;
    color: #61dbfb;
}

.icon-2 {
    bottom: -10px;
    left: 0;
    color: #f7df1e;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p,
    .hero-btns,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }
}


/* trust badges section */

/* --- Trust Bar Styling --- */
.trust-bar {
    padding: 30px 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.trust-bar-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--accent);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.9rem;
    color: var(--text-main);
    display: block;
}

.trust-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .trust-grid {
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .trust-bar {
        overflow-x: auto;
        /* Allow horizontal scroll on very small screens */
        padding: 20px 0;
    }

    .trust-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .trust-item {
        flex: 0 0 auto;
        /* Prevent badges from shrinking */
    }
}


/* --- Redesigned Services Section --- */
.services-advanced {
    padding: 100px 0 30px 0;
    background: var(--bg-nav);
}

.services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-title {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0 20px;
}

.badge-pill {
    background: rgba(9, 132, 227, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Pillar Grid System */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

/* Individual Pillar Styling */
.service-pillar {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    text-align: left;
}

/* Featured Service Highlight */
.service-pillar.highlighted {
    border-color: var(--accent);
    background: var(--bg-nav);
    box-shadow: 0 30px 60px rgba(9, 132, 227, 0.08);
    transform: translateY(-10px);
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Pillar Header */
.pillar-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pillar-icon {
    font-size: 2.2rem;
    color: var(--accent);
}

.pillar-title h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.pillar-title span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Pillar Body */
.pillar-body p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.deliverables {
    list-style: none;
    margin-bottom: 40px;
}

.deliverables li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.deliverables li i {
    color: #00b894;
    /* Success green */
    font-size: 1rem;
}

/* Pillar Footer & Button */
.pillar-footer {
    margin-top: auto;
}

.pillar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.pillar-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-alt {
    background: var(--accent);
    color: white !important;
    border: none;
}

.btn-alt:hover {
    background: var(--accent);
    transform: scale(1.02);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
    .detailed-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }

    .service-pillar {
        padding: 40px 30px;
    }

    .service-pillar.highlighted {
        transform: none;
    }
}


/* free website audit cta button */

/* --- Website Audit CTA Styling --- */
.audit-cta {
    padding: 30px 0;
    /* background: #0f172a; */
    /* Deep Navy - Contrast for both themes */
    color: var(--text-main);
    border-radius: 40px;
    margin: 40px 20px;
    overflow: hidden;
    position: relative;
}

.audit-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.audit-badge {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audit-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.audit-content p {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.audit-perks {
    list-style: none;
}

.audit-perks li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.audit-perks li i {
    color: var(--accent);
    background: rgba(9, 132, 227, 0.15);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* The Card on the Right */
.audit-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    color: #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .audit-card {
    background: #1e293b;
    color: #ffffff;
}

.audit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.audit-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
}

.audit-form .input-group {
    margin-bottom: 15px;
}

.audit-form input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
}

[data-theme="dark"] .audit-form input {
    background: #0f172a;
    border-color: #334155;
    color: white;
}

.btn-audit {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-audit:hover {
    background: #0773c5;
    transform: translateY(-2px);
}

.trust-note {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .audit-container {
        grid-template-columns: 1fr;
        /* text-align: center; */
    }

    .audit-perks li {
        /* justify-content: center; */
    }

    .audit-cta {
        margin: 20px 10px;
        border-radius: 20px;
    }
}



/* why to trsut section */

/* --- Why Trust Section Styling --- */
.trust-why {
    padding: 100px 0;
    background: var(--bg-nav);
}

.trust-why-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left Side: Visuals */
.trust-visual {
    position: relative;
}

.image-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.trust-visual:hover img {
    transform: scale(1.05);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(9, 132, 227, 0.3);
    z-index: 5;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Right Side: Content */
.trust-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 20px 0;
    line-height: 1.2;
}

.trust-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .trust-why-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trust-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-card {
        right: 0;
        bottom: -20px;
        padding: 20px;
    }
}



/* --- Process Section Styling --- */
.process-section {
    padding: 30px 0;
    background: var(--bg-nav);
    position: relative;
}

.process-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 60px;
}

/* The Horizontal Line Connector */
.process-line {
    position: absolute;
    top: 100px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--bg-nav);
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--border);
    opacity: 0.5;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: var(--transition);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-nav);
    border: 2px solid var(--border);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: 0 0 0 10px var(--bg-nav);
    /* Masks the line behind icon */
}

.step-card:hover .step-icon {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-5px);
}

.step-card:hover .step-number {
    color: var(--accent);
    opacity: 0.2;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Arrow styling */
.step-arrow {
    position: absolute;
    top: 100px;
    right: -25px;
    color: var(--border);
    font-size: 1.2rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }

    .process-line,
    .step-arrow {
        display: none;
        /* Hide line/arrows on tablet/mobile for vertical stack */
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding-bottom: 40px;
        border-bottom: 1px dashed var(--border);
    }

    .step-card:last-child {
        border-bottom: none;
    }
}


/* --- Business Growth Section Styling --- */
.business-growth {
    padding: 30px 0;
    background: var(--bg-nav);
}

.business-growth-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 60px;
}

.strategy-column {
    background: var(--bg-nav);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.strategy-column:hover {
    border-color: var(--accent);
}

.column-header {
    margin-bottom: 40px;
    text-align: center;
}

.column-header i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.column-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.logic-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.logic-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    background: rgba(9, 132, 227, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.logic-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.logic-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Central Divider */
.strategy-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.strategy-divider::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--border);
    z-index: 1;
}

.divider-icon {
    background: var(--accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Growth Summary Card */
.growth-summary {
    margin-top: 60px;
    background: var(--border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .strategy-divider {
        display: none;
    }

    .strategy-column {
        padding: 30px 20px;
    }
}


/* --- Portfolio Styling --- */
.portfolio {
    padding: 30px 0;
    background: var(--bg-nav);
}

.portfolio-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-nav);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Hover Effect */
.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 132, 227, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.view-project {
    color: white;
    font-weight: 700;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 50px;
}

/* Project Info */
.project-info {
    padding: 30px;
}

.project-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.project-tags span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(9, 132, 227, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.project-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.project-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.live-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}



/* --- Testimonials Styling --- */
.testimonials {
    padding: 30px 0;
    background: var(--bg-nav);
}

.testimonial-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.stars i {
    color: #f1c40f;
    font-size: 1.2rem;
}

/* Grid for Desktop */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-nav);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* Platform Branding */
.platform-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google {
    background: rgba(234, 67, 53, 0.1);
    color: #ea4335;
}

.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.review-stars {
    color: #f1c40f;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info strong {
    display: block;
    font-size: 0.95rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Mobile & Tablet "Scroll" Layout --- */
@media (max-width: 992px) {
    .testimonial-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 30px;
        /* Space for scrollbar */
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 85%;
        /* Shows a peek of the next card */
        scroll-snap-align: center;
        padding: 30px;
    }
}



/* --- Connect Now Styling --- */
.connect-now {
    padding: 30px 0;
    background: var(--bg-nav);
    border-top: 1px solid var(--border);
}

.connect-now-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.connect-tile {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.connect-tile:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.tile-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Platform Colors */
.tel {
    background: rgba(9, 132, 227, 0.1);
    color: #0984e3;
}

.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.messenger {
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
}

.mail {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.tile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tile-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}

.tile-action {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Availability Pulse */
.availability-status {
    margin-top: 50px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .connect-tile {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }

    .tile-icon {
        margin-bottom: 0;
        margin-right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .tile-info span {
        margin-bottom: 0;
    }

    .tile-action {
        display: none;
    }

    /* Hide text action on mobile, the whole card is clickable */
}




/* --- Project Brief Styling --- */
.project-brief {
    padding: 30px 0;
    background: var(--bg-nav);
}

.brief-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
}

.brief-intro h2 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.guidance-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.guide-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Form Styling */
.brief-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.brief-form input,
.brief-form textarea,
.brief-form select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-nav);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.brief-form input:focus,
.brief-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(9, 132, 227, 0.1);
}

.budget-selector {
    margin: 10px 0;
}

.budget-selector span {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.budget-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.budget-options label {
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit {
    background: var(--accent);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.2);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .brief-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 40px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}



/* --- Contact Hub Styling --- */
.contact-hub {
    padding: 100px 0;
    background: var(--bg-nav);
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

/* Form Card */
.contact-form-card {
    background: var(--bg-nav);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-nav);
    color: var(--text-main);
    font-family: inherit;
}

.btn-primary-form {
    background: var(--accent);
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary-form:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Sidebar Details */
.quick-chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

.wa {
    background: #25D366;
}

.msgr {
    background: #0084FF;
}

.chat-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    font-size: 1rem;
}

.info-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile View */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: -1;
    }

    /* Details show above form on mobile */
    .contact-form-card {
        padding: 30px 20px;
    }
}


/* --- Footer Styling --- */
.main-footer {
    background: var(--bg-topbar);
    /* Dark background for professional contrast */
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    align-items: start;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.branding p {
    color: #cbd5e1;
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-badge {
    margin-top: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #94a3b8;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    margin-left: 20px;
}

/* Scroll to Top Button */
#scroll-top {
    background: var(--accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

#scroll-top:hover {
    transform: scale(1.1);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}


/* --- Contact Card Styling --- */
.contact-card-section {
    padding: 100px 0;
    background: var(--bg-nav);
}

.contact-glass-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

/* Left Section: Profile */
.card-profile {
    padding: 50px;
    background: rgba(9, 132, 227, 0.03);
    border-right: 1px solid var(--border);
}

.profile-img {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.profile-title h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2ecc71;
}

.dot-online {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
}

.profile-bio {
    margin: 25px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.location-tag {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 700;
}

/* Right Section: Action Grid */
.card-actions {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.action-item {
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.action-item i {
    font-size: 1.4rem;
}

/* Action Colors */
.call {
    background: #0984e3;
}

.whatsapp {
    background: #25D366;
}

.messenger {
    background: #0084FF;
}

.email {
    background: #2d3436;
}

.action-item:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-footer-note {
    margin-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Responsive Tablet & Mobile */
@media (max-width: 768px) {
    .contact-glass-card {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }

    .card-profile {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        text-align: center;
    }

    .profile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .status-indicator {
        justify-content: center;
    }

    .card-actions {
        padding: 30px;
    }
}

@media (max-width: 400px) {
    .action-grid {
        grid-template-columns: 1fr;
    }
}



/* --- Floating Contact Card CSS --- */
.floating-contact-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* The Action Card */
.card-inner {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact-card.active .card-inner {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Card Header */
.card-header {
    padding: 12px 20px;
    background: var(--bg-topbar);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Card Body */
.card-body {
    padding: 20px;
    text-align: center;
}

.card-body p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.floating-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.f-action-item {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.f-action-item:hover {
    transform: scale(1.1);
}

.call {
    background: #0984e3;
}

.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.messenger {
    background: #0084FF;
    color: #ffffff;
}

.email {
    background: #2d3436;
}

/* The Toggle Trigger */
.floating-trigger {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 25px rgba(9, 132, 227, 0.4);
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.floating-contact-card.active .floating-trigger {
    transform: scale(0);
    opacity: 0;
}

.close-card {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
    .floating-contact-card {
        right: 15px;
        bottom: 90px;
        /* Moves it above our Bottom Nav bar */
    }

    .card-inner {
        width: calc(100vw - 30px);
    }
}



/* --- About Me Styling --- */
.about-me {
    padding: 100px 0 30px 0;
    background-color: var(--bg-nav);
    transition: background-color 0.4s ease;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side */
.about-image-stack {
    position: relative;
    padding-right: 40px;
}

.about-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(9, 132, 227, 0.3);
}

.experience-badge .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
}

.experience-badge .txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

/* Content Side */
.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 20px 0;
    color: var(--text-main);
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Skill Tags */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.skill-tag {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="dark"] .skill-tag {
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Section */
.about-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.abn-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.abn-info i {
    font-size: 1.5rem;
    color: var(--accent);
}

.abn-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-outline {
    padding: 12px 25px;
    border: 2px solid var(--accent);
    border-radius: 10px;
    color: var(--accent);
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-stack {
        max-width: 400px;
        margin: 0 auto 50px;
        padding-right: 0;
    }

    .skill-tags {
        justify-content: center;
    }

    .about-footer {
        flex-direction: column;
        gap: 20px;
    }
}



/* --- Services Section Styling --- */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-nav);
}

.services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .service-card {
    background: rgba(255, 255, 255, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
    margin-top: 30px;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: #34b233;
    border: 1px solid #34b233;
    border-radius: 50%;
    padding: 2px;
    font-size: 0.8rem;
}

/* Maintenance Tiers Styling */
.maintenance-tiers {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.tier {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--accent);
    border-radius: 5px;
}

.maintenance-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* View Package Button */
.btn-package {
    text-align: center;
    padding: 12px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-package:hover {
    background: var(--accent);
    color: white;
}

/* --- Blog Section Styling --- */
.blog-section {
    padding: 50px 0;
    background: var(--bg-nav);
}

.blog-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image & Tag */
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Content Area */
.blog-info {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--accent);
}

.blog-info h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-info h3 a {
    color: var(--text-main);
    transition: color 0.3s;
}

.blog-info h3 a:hover {
    color: var(--accent);
}

.blog-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-footer {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Strategy & Question Section --- */
.strategy-question {
    padding: 30px 0;
    background: var(--bg-nav);
    text-align: center;

}

.strategy-question-container {
    /* background-color: #f7e2e0; */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #e74c3c;
    border-radius: 20px;
}

.question-box {
    max-width: 800px;
    margin: 0 auto 60px;
}

.badge-pill.warn {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.question-box h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 20px 0;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    background: var(--border);
    padding: 10px 20px;
    border-radius: 50px;
}

.problem-item i {
    color: #e74c3c;
}

/* The Transition Bridge */
.solution-bridge {
    margin: 80px 0 60px;
    position: relative;
}

.bridge-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Help Cards */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.help-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    position: relative;
    transition: var(--transition);
}

.help-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.help-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
}

.help-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.help-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .problem-grid {
        flex-direction: column;
        gap: 15px;
    }
}


/* --- Lead Generation CTA Styling --- */
.strategy-cta-container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}


.cta-inner-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(9, 132, 227, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cta-inner-card {
    background: #111827;
    border-color: #1f2937;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Background Decoration */
.cta-inner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(9, 132, 227, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-text-side {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-text-side h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-text-side p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cta-action-side {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: right;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.btn-primary-glow {
    background: var(--accent);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.3);
    transition: var(--transition);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(9, 132, 227, 0.5);
}

.btn-secondary-outline {
    border: 2px solid var(--border);
    color: var(--text-main);
    padding: 13px 25px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    background: var(--border);
}

.cta-trust-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-inner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-action-side {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* --- Industries Section Styling --- */
.industries-section {
    padding: 100px 0;
    background: var(--bg-nav);
}

.industries-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for cards */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(9, 132, 227, 0.05);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.ind-icon {
    width: 70px;
    height: 70px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.industry-card:hover .ind-icon {
    background: var(--accent);
    color: white;
    transform: rotateY(360deg);
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}



/* --- about us page css --- */


/* --- Full Width About Hero --- */
.about-hero-full {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Image Layer */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    z-index: 2;
}

[data-theme="light"] .hero-overlay-dark {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
}

.hero-container-flex {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* --- Absolute Breadcrumb --- */
.breadcrumb-abs {
    position: absolute;
    top: -90px;
    /* Adjust based on your header height */
    left: 20px;
    z-index: 15;
}

.breadcrumb-abs ol {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: var(--text-main);
}

[data-theme="light"] .breadcrumb-abs ol {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.breadcrumb-abs a {
    color: var(--accent);
    font-weight: 700;
}

/* --- Content & Metrics --- */
.about-hero-main {
    max-width: 900px;
}

.sub-heading {
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 0.85rem;
}

.about-hero-full h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-main);
}

.about-hero-full p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 50px;
}

/* Metrics Grid */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

[data-theme="light"] .metric-box {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

.metric-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.m-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.m-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-full {
        padding: 80px 0;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .breadcrumb-abs {
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* --- About Trust Ribbon --- */
.about-trust-ribbon {
    padding: 40px 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    position: relative;
    margin-top: -30px;
    /* Pulls it up slightly to overlap the Hero shadow */
    z-index: 20;
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    transition: var(--transition);
}

.trust-badge-card:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(9, 132, 227, 0.1);
    /* Subtle Blue tint */
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

[data-theme="dark"] .badge-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .trust-flex {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .about-trust-ribbon {
        margin-top: 0;
        padding: 30px 0;
    }

    .trust-badge-card {
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
    }

    .trust-badge-card:last-child {
        border-bottom: none;
    }
}



/* --- Story & Vision Styling --- */
.story-vision-section {
    padding: 100px 0;
    background-color: var(--bg-nav);
    transition: var(--transition);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 20px 0;
    line-height: 1.2;
}

.lead-p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Vision & Mission Cards */
.vision-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.vm-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: var(--transition);
}

[data-theme="dark"] .vm-card {
    background: rgba(255, 255, 255, 0.02);
}

.vm-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.vm-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.vm-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.vm-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Visual Side */
.story-visual {
    position: relative;
}

.story-image-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.experience-card-float {
    position: absolute;
    top: -30px;
    left: -30px;
    background: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 24px;
    max-width: 250px;
    z-index: 5;
    box-shadow: 0 15px 30px rgba(9, 132, 227, 0.3);
}

.exp-year {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.experience-card-float h3 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.experience-card-float p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .experience-card-float {
        position: static;
        margin: 0 auto 30px;
        max-width: 100%;
        text-align: center;
    }
}


/* --- Process Timeline Styling --- */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-nav);
}

.process-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-nav);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.1);
}

.step-content h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Connecting Arrows (Desktop only) */
.step-arrow {
    position: absolute;
    right: -15%;
    top: 35px;
    color: var(--border);
    font-size: 1.2rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        gap: 50px;
    }

    .step-arrow {
        transform: rotate(90deg);
        right: auto;
        bottom: -40px;
        top: auto;
    }

    .step-number {
        left: 20px;
        top: 0;
    }
}



/* --- Final Discovery CTA Styling --- */
.discovery-cta {
    padding: 100px 0;
    background-color: var(--bg-nav);
}

.cta-glass-wrapper {
    width: 100%;
    background: var(--bg-topbar);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .cta-glass-wrapper {
    background: #f8fafc;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.cta-content-box {
    max-width: 650px;
    position: relative;
    z-index: 5;
}

.cta-content-box h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-main);
    margin: 20px 0;
}

[data-theme="dark"] .cta-content-box h2 {
    color: #fff;
}

.cta-content-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-benefits span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-benefits i {
    color: var(--accent);
}

/* Button Styling */
.cta-button-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main-cta {
    background: var(--accent);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.4);
    transition: var(--transition);
}

.btn-main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(9, 132, 227, 0.6);
}

.btn-sub-cta {
    background: transparent;
    color: var(--text-main);
    padding: 18px 35px;
    border: 2px solid var(--border);
    border-radius: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-sub-cta:hover {
    background: var(--border);
}

/* Abstract Decoration */
.cta-decoration {
    font-size: 15rem;
    color: var(--accent);
    opacity: 0.05;
    position: absolute;
    right: -20px;
    bottom: -50px;
    transform: rotate(-15deg);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cta-glass-wrapper {
        padding: 60px 30px;
        text-align: center;
    }

    .cta-benefits {
        justify-content: center;
    }

    .cta-button-row {
        justify-content: center;
    }

    .cta-decoration {
        display: none;
    }
}




/* --- My Story Styling --- */
.my-story-section {
    padding: 100px 0;
    background-color: var(--bg-nav);
    overflow: hidden;
}

.story-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.story-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 0;
    line-height: 1.4;
}

.narrative p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Blockquote Styling */
.personal-philosophy {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.personal-philosophy blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Timeline Styling */
.story-visual-timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 2px;
    height: 90%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg-nav);
}

.t-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.t-desc strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.t-desc p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .story-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-visual-timeline {
        padding-left: 20px;
    }
}




/* --- Personal About Section Styling --- */
.personal-about {
    padding: 120px 0;
    background-color: var(--bg-nav);
    transition: background-color 0.4s ease;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Side */
.about-image-side {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    max-width: 450px;
}

.profile-photo {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.experience-card {
    position: absolute;
    /* top: -30px; */
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(9, 132, 227, 0.3);
    z-index: 5;
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.signature-box {
    margin-top: 30px;
    padding-left: 20px;
}

.signature-box p {
    font-family: 'Dancing Script', cursive;
    /* Optional: adds a personal signature touch */
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.signature-box span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Text Side */
.about-text-side {
    flex: 1.2;
}

.about-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 0;
    line-height: 1.4;
}

.about-bio p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Character Grid */
.character-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.trait {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trait i {
    width: 45px;
    height: 45px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.trait strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.trait span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 60px;
    }

    .about-image-side {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .experience-card {
        right: 0;
        /* top: -20px; */
    }
}



/* --- Core Values Styling --- */
.core-values {
    padding: 100px 0;
    background-color: var(--bg-nav);
}

.core-values-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .value-card {
    background: rgba(255, 255, 255, 0.02);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(9, 132, 227, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(9, 132, 227, 0.1);
    color: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Background Accent */
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--accent);
    opacity: 0.03;
    clip-path: circle(50% at 100% 100%);
}




/* --- Vision & Mission Styling --- */
.vision-mission {
    padding: 100px 0;
    background-color: var(--bg-nav);
}

.vm-wrapper {
    display: flex;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .vm-wrapper {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.vm-box {
    flex: 1;
    padding: 60px;
    position: relative;
}

.vm-accent-icon {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 40px;
    right: 40px;
}

.vm-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}

.vm-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.vm-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.vm-list i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Divider */
.vm-divider {
    width: 1px;
    background: var(--border);
    margin: 60px 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .vm-wrapper {
        flex-direction: column;
    }

    .vm-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .vm-box {
        padding: 40px;
    }
}

/* service main page css */

/* --- Redesigned Spatial Hero --- */
.spatial-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--bg-nav);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* --- Absolute Breadcrumb --- */
.breadcrumb-spatial {
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 100;
}

.breadcrumb-spatial ol {
    display: flex;
    list-style: none;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
}

.breadcrumb-spatial a {
    color: var(--accent);
    font-weight: 700;
}

.breadcrumb-spatial .active {
    color: var(--text-muted);
}

/* --- Split Layout --- */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.content-side h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-main);
}

.content-side p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Metrics Ribbon */
.metrics-ribbon {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.metric strong {
    display: block;
    font-size: 1.8rem;
    color: var(--text-main);
}

.metric span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}

/* --- Visual Side & Floating Tech --- */
.visual-side {
    position: relative;
}

.photo-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.glass-bg {
    position: absolute;
    inset: -20px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 40px;
    filter: blur(40px);
    z-index: 1;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-tech {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.t1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.t2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1s;
}

.t3 {
    top: 40%;
    left: -40px;
    animation-delay: 2s;
}

.t4 {
    top: -10px;
    right: 40px;
    animation-delay: 3s;
    font-weight: 900;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .breadcrumb-spatial {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .metrics-ribbon {
        justify-content: center;
    }

    .cta-flex {
        justify-content: center;
    }

    .visual-side {
        margin-top: 60px;
    }
}



/* --- Services Split Hero --- */
.services-hero-split {
    position: relative;
    padding: 140px 0 100px;
    background-color: var(--bg-nav);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* --- Breadcrumb Positioning --- */
.breadcrumb-top-left {
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 100;
}

.breadcrumb-top-left ol {
    display: flex;
    list-style: none;
    gap: 12px;
    background: var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.breadcrumb-top-left a {
    color: var(--accent);
}

.breadcrumb-top-left .active {
    color: var(--text-muted);
}

/* --- Content Side --- */
.hero-text-col h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-main);
}

.hero-text-col p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* --- Image Side (Geometric Mask) --- */
.image-mask-container {
    position: relative;
    height: 500px;
    width: 110%;
    /* Makes it feel full-width on the right */
    border-radius: 40px 0 0 40px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
}

.masked-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-nav), transparent);
}

/* --- Trust Badge Bridge (Floating) --- */
.trust-badge-bridge {
    position: absolute;
    bottom: -60px;
    left: 0;
    display: flex;
    gap: 20px;
    z-index: 50;
}

.trust-pill {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .trust-pill {
    background: rgba(255, 255, 255, 0.03);
}

.trust-pill i {
    font-size: 1.6rem;
    color: var(--accent);
}

.pill-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.pill-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-layout-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-mask-container {
        width: 100%;
        border-radius: 40px;
        height: 350px;
    }

    .trust-badge-bridge {
        position: static;
        flex-direction: column;
        margin-top: 40px;
    }

    .breadcrumb-top-left {
        left: 50%;
        transform: translateX(-50%);
        top: -80px;
    }
}




/* --- Package Category Groups --- */
.package-category-group {
    margin-bottom: 80px;
}

.packages-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.category-header i {
    font-size: 2rem;
    color: var(--accent);
}

.category-header h2 {
    font-size: 1.8rem;
    color: var(--text-main);
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.package-item {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Alert Item (Bugs) */
.package-item.alert {
    border-left: 4px solid #e74c3c;
}

/* Featured Item (SEO) */
.package-item.featured {
    border-left: 4px solid var(--accent);
}

.package-item h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.package-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Micro Action Button */
.btn-micro {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
    display: inline-block;
    transition: var(--transition);
}

.btn-micro:hover {
    letter-spacing: 2px;
}



/* --- Services Final CTA --- */
.services-final-cta {
    padding: 100px 0;
    background-color: var(--bg-nav);
}

.cta-floating-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: #0f172a;
    /* Deep Navy/Black for contrast */
    border-radius: 40px;
    padding: 80px 60px;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(9, 132, 227, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .cta-floating-box {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

/* Consultant Pill */
.consultant-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px 8px 8px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.micro-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.consultant-pill span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}

/* Content Area */
.cta-visual-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

[data-theme="light"] .cta-visual-info h2 {
    color: var(--text-main);
}

.cta-visual-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

[data-theme="light"] .cta-visual-info p {
    color: var(--text-muted);
}

.cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.f-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="light"] .f-item {
    color: var(--text-main);
}

.f-item i {
    color: var(--accent);
}

/* Action Side */
.cta-button-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary-glow {
    background: var(--accent);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.5);
    transition: var(--transition);
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(9, 132, 227, 0.7);
}

.or-text {
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 700;
    transition: var(--transition);
}

[data-theme="light"] .btn-outline-white {
    border-color: var(--border);
    color: var(--text-main);
}

.cta-subtext {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .cta-subtext {
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .cta-floating-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 30px;
    }

    .cta-features {
        justify-content: center;
    }

    .btn-primary-glow,
    .btn-outline-white {
        width: 100%;
    }
}


/* --- FAQ Section Styling --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-nav);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Sidebar Info */
.faq-sidebar h2 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.faq-support-card {
    margin-top: 40px;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .faq-support-card {
    background: rgba(255, 255, 255, 0.02);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.email-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 10px 0 20px;
    text-decoration: underline var(--accent);
}

.response-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Accordion Logic */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.faq-item summary {
    list-style: none;
    padding: 20px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item details[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 90%;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-sidebar {
        text-align: center;
    }

    .faq-support-card {
        display: none;
    }



    /* Hide sidebar card on mobile for cleaner flow */
}




/* single service page */


/* --- Single Service Layout --- */
.service-single-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bg-nav);
    overflow: hidden;
}

.breadcrumb-abs {
    position: absolute;
    top: -90px;
    left: 20px;
}

.breadcrumb-abs ol {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb-abs a {
    color: var(--accent);
    font-weight: 700;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.s-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
}

.s-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}



/* Mobile Adjustments */
@media (max-width: 992px) {
    .breadcrumb-abs {

        top: -60px;
        left: 105px;
    }

}


/* --- Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--bg-nav);
    border: 1px solid var(--border);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(9, 132, 227, 0.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.p-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.p-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.p-list i {
    color: var(--accent);
    margin-right: 10px;
}

.p-list li.disabled {
    opacity: 0.4;
}





/* porfolio section css */

/* --- Portfolio Final CTA Styling --- */
.portfolio-cta {
    padding: 120px 0;
    background-color: var(--bg-nav);
}

.cta-card-spatial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--bg-topbar);
    padding: 80px;
    border-radius: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cta-card-spatial {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

/* Impact Info Side */
.cta-impact-info h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 20px 0;
}

.cta-impact-info {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
}

.impact-stats {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-row i {
    font-size: 1.8rem;
    color: var(--accent);
}

.stat-row strong {
    display: block;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stat-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Form Styling */
.cta-form-area {
    background: var(--bg-nav);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: green;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 10px rgba(9, 132, 227, 0.1);
}

.btn-primary-full {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.3);
}

.security-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .cta-card-spatial {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 50px;
    }
}



/* blogs main page */




/* --- Professional Blog Hub Variables --- */
:root {
    --card-bg: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
    --card-bg: #1e293b;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Layout Structure --- */
.blog-hub-v3 {
    padding: 100px 0;
    background-color: var(--bg-nav);
    /* Ensure background is defined */
}

.blog-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: flex-start;
}

/* --- Main Content Cards --- */
.blog-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.modern-post-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
}

.modern-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9, 132, 227, 0.1);
}

.post-media {
    position: relative;
    height: 220px;
}

.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-pill {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.post-inner-content {
    padding: 30px;
}

.post-date-row {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.post-inner-content h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--text-main);
    /* Explicit Visibility */
    margin-bottom: 12px;
}

.post-inner-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    /* Explicit Visibility */
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more-link {
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 15px;
}

/* --- Sidebar Styling --- */
.blog-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.sidebar-title {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

/* Search Input */
.search-input-wrapper {
    display: flex;
    background: var(--bg-nav);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 5px;
}

.search-input-wrapper input {
    background: transparent;
    border: none;
    padding: 10px;
    color: var(--text-main);
    width: 100%;
}

.search-input-wrapper button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    width: 45px;
    cursor: pointer;
}

/* Subscribe Block */
.subscribe-block {
    background: var(--accent);
    color: #fff;
    text-align: center;
}

.subscribe-block h4 {
    color: #fff;
    margin: 15px 0 10px;
}

.subscribe-block p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.sidebar-sub-form input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin-bottom: 10px;
}

.sidebar-sub-form button {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

/* Trending List */
.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
}

.trend-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
}

.trend-text h5 {
    color: var(--text-main);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.trend-text small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* --- Pagination --- */
.pagination-modern {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 700;
}

.page-num.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Mobile */
@media (max-width: 992px) {
    .blog-main-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-sticky {
        display: none;
    }
}



/* single blog page */


/* --- Single Post Layout --- */
.single-post-container {
    padding: 140px 0 100px;
    background: var(--bg-nav);
    position: relative;
}

.post-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb-post {
    position: absolute;
    top: 40px;
    left: 20px;
}

.breadcrumb-post ol {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.85rem;
}

/* Post Header */
.post-header-area {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.post-header-area h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-main);
}

.post-meta-detailed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.meta-info {
    text-align: left;
}

.meta-info strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
}

.meta-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Featured Image */
.post-featured-image {
    width: 100%;
    max-width: 1100px;
    height: 500px;
    margin: 0 auto 60px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body Layout */
.post-body-layout {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Share Bar */
.share-bar-vertical {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.share-bar-vertical a {
    width: 50px;
    height: 50px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.share-bar-vertical a:hover {
    background: var(--accent);
    color: #fff;
}

/* Article Typography */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-content h2 {
    margin: 40px 0 20px;
    font-size: 2rem;
}

.article-content p {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-main);
}

blockquote {
    border-left: 5px solid var(--accent);
    padding: 30px;
    background: var(--border);
    font-style: italic;
    font-size: 1.3rem;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
}

/* Author Box & Navigation */
.post-footer-box {
    max-width: 820px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.author-card {
    display: flex;
    gap: 30px;
    background: var(--border);
    padding: 40px;
    border-radius: 30px;
    align-items: center;
}

.author-card img {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    object-fit: cover;
}

.post-nav-row {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.post-nav-row a span {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
    .post-body-layout {
        grid-template-columns: 1fr;
    }

    .share-bar-vertical {
        flex-direction: row;
        position: static;
        justify-content: center;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }
}



/* --- Related Posts Styling --- */
.related-posts-section {
    padding: 80px 0;
    background: var(--bg-nav);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-divider {
    height: 1px;
    background: var(--border);
    width: 100%;
    margin-bottom: 60px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.related-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.btn-all-posts {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* The Grid */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mini-post-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.mini-post-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--card-shadow);
}

.mini-post-thumb {
    position: relative;
    height: 150px;
}

.mini-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.mini-post-content {
    padding: 20px;
}

.mini-post-content h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.mini-post-content h4 a {
    color: var(--text-main);
    text-decoration: none;
}

.mini-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mini-meta .dot {
    width: 4px;
    height: 4px;
    background: var(--border);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}




/* --- Reading Progress Bar --- */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Thin and professional */
    background: transparent;
    z-index: 9999;
    /* Ensure it stays above everything */
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--accent), #00d2ff);
    box-shadow: 0 0 10px rgba(9, 132, 227, 0.5);
    transition: width 0.1s ease-out;
    /* Smooth movement */
}

/* Light theme adjustment if needed */
[data-theme="light"] .progress-bar {
    background: var(--accent);
}



/* mega dropdown */

/* --- Mega Menu Container --- */
.has-megamenu {
    position: static;
    /* Important for full-width feel */
}

.megamenu-panel {
    position: absolute;
    top: 100%;
    left: 25%;
    /* width: 100%; */
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;

    border-radius: 0% 0% 20px 20px;
}

[data-theme="dark"] .megamenu-panel {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
}

.has-megamenu:hover .megamenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Grid Structure --- */
.megamenu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.menu-category {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.menu-category i {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(9, 132, 227, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.menu-category span {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
}

.menu-category p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Link Styling --- */
.menu-links {
    list-style: none;
}

.menu-links li {
    margin-bottom: 15px;
}

.menu-links a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.menu-links a span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.menu-links a:hover {
    color: var(--accent);
}

/* Emergency Link Highlight */
.emergency-link {
    color: #e74c3c !important;
}

/* Highlight Column / CTA */
.highlight-col {
    background: rgba(9, 132, 227, 0.03);
    padding: 20px;
    border-radius: 20px;
}

.menu-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

.menu-cta p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-cta a {
    display: inline-block;
    background: var(--accent);
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
}