@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Outfit:wght@400;600;800;900&display=swap');

:root {
    --bg-main: #ffffff;
    --bg-secondary: #f4f6f9;
    --text-primary: #0a0e17;
    --text-secondary: #4a5568;
    --accent-cyan: #00d5ff; /* Matching Logo Cyan */
    --accent-purple: #7000ff; /* Matching Logo Purple */
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
}

html {
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
}

/* Navbar Override for Dark Fullscreen Hero */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 2rem 4rem;
    z-index: 100;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s ease;
}

.services-container, .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links > a, .dropbtn {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.nav-links > a:hover, .dropbtn:hover, .nav-links > a.active {
    color: #fff;
    opacity: 1;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    display: inline-block;
    padding: 1.2rem 0;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-secondary);
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dropdown-content a.dropdown-item {
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-weight: 600;
}

.dropdown-item .dd-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: rgba(0, 213, 255, 0.1);
    color: var(--accent-purple);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-content a.dropdown-item:hover {
    background-color: #f8f9fc;
    color: var(--accent-cyan);
    padding-left: 2.2rem; 
}

.dropdown-content a.dropdown-item:hover .dd-icon {
    background: var(--accent-cyan);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(0,0,0,0.06);
    margin: 0.5rem 0;
}

.dropdown-content .view-all {
    color: var(--accent-purple);
}
.dropdown-content .view-all .dd-icon {
    background: rgba(112,0,255,0.1);
    color: var(--accent-purple);
}
.dropdown-content .view-all:hover .dd-icon {
    background: var(--accent-purple);
    color: #fff;
}

/* CTA Structure */
.nav-cta {
    background: #fff;
    color: #0a0e17;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    border: none;
    box-shadow: none;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.cta-arrow {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}


/* Fullscreen Image Hero */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: #000;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-animated-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(-45deg, #050510, #3d0099, #00d5ff, #050510);
    background-size: 400% 400%;
    animation: bgGradientLoop 15s ease infinite;
}

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

.bg-marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    transform: translateY(-50%) rotate(-5deg);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.bg-marquee {
    font-size: 20rem;
    font-weight: 900;
    white-space: nowrap;
    color: #fff;
    margin: 0;
    animation: marqueeScroll 60s linear infinite;
}

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

.hero-bg .bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, #050510 100%);
    z-index: 2;
}
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}
.hero-main-txt .giant-txt {
    font-size: clamp(2.2rem, 7.5vw, 5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: -1px;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    max-width: 100%;
}
/* Hero Echo Graphic */
.hero-echo-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

.echo-center {
    position: relative;
    z-index: 10;
    text-align: center;
}
.echo-center h3 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.echo-center span {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.echo-system-scale {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    animation: echoPulse 4s infinite ease-in-out;
}
@keyframes echoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); } 
}

.echo-system-rotate {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    animation: systemRevolve 35s infinite linear;
}
@keyframes systemRevolve {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.echo-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}
.ring-1 { width: 180px; height: 180px; }
.ring-2 { width: 300px; height: 300px; }
.ring-3 { width: 420px; height: 420px; border: 1px solid rgba(255, 255, 255, 0.05); }

.orbit-node {
    position: absolute;
    width: 45px; height: 45px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 213, 255, 0.4);
    z-index: 20;
    /* We don't hide overflow here because box-shadows might be clipped, wait, if we are doing rounded corners and images, we don't hide overflow on the container, but we hide it on node-content */
}

.node-content {
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex; justify-content: center; align-items: center;
    background: #000;
    animation: counterRevolve 35s infinite linear;
}
.node-content img { width: 100%; height: 100%; object-fit: cover; }
.icon-node .node-content { background: #111; color: #fff; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.1); }

@keyframes counterRevolve {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Positioning Nodes */
.node-1 { top: 15%; left: 16%; box-shadow: 0 0 20px rgba(112,0,255,0.6); }
.node-2 { top: 78%; left: 15%; border-radius: 12px; }
.node-2 .node-content { border-radius: 12px; }
.node-3 { top: 22%; right: 10%; box-shadow: 0 0 20px rgba(255,100,100,0.4); }
.node-4 { top: 65%; right: 0%; border-radius: 12px; }
.node-4 .node-content { border-radius: 12px; }
.node-5 { top: -2%; left: 50%; margin-left: -22.5px; } /* Using margin instead of translate so rotation origin is true */
.node-6 { bottom: -2%; left: 45%; margin-left: -22.5px; }

/* Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    right: 4rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    border-top: none; /* Changed for animated border */
    padding-top: 1.5rem;
}
.hero-bottom-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 1px;
    background: rgba(255,255,255,0.2);
    width: 0;
    animation: revealLine 1s ease-out 0.8s forwards;
}
.service-row-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.service-row-item:nth-child(1) { animation-delay: 1.0s; }
.service-row-item:nth-child(2) { animation-delay: 1.1s; }
.service-row-item:nth-child(3) { animation-delay: 1.2s; }
.service-row-item:nth-child(4) { animation-delay: 1.3s; }

/* Cinematic Hero Animations */
.hero-main-txt {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-side-txt {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.hero-bg img {
    animation: kenBurns 25s ease-out forwards;
}
.navbar {
    animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); opacity: 0;}
    to { opacity: 1; transform: translateY(0); opacity: 1;}
}
@keyframes revealLine {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.service-row-item .srv-num {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 0.9rem;
}
.service-row-item .srv-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(0, 213, 255, 0.1);
    border: 1px solid rgba(0, 213, 255, 0.3);
    color: var(--accent-purple);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, var(--text-primary) 40%, #64748b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Services */
.services-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.service-card {
    background: #0a0e17; 
    border: 1px solid rgba(255, 255, 255, 0.05); /* Softer border */
    border-radius: 20px;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.service-card:hover::before {
    opacity: 1;
}

.srv-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15; /* slightly visible by default for depth */
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.srv-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10,14,23,0.5) 0%, rgba(10,14,23,0.98) 100%); /* gradient to dark at bottom */
    opacity: 1; /* always show to contrast text nicely */
    transition: all 0.6s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15); /* Soft border hover */
}

.service-card:hover .srv-bg-img {
    opacity: 0.4;
    transform: scale(1);
}

.srv-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(0, 213, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-cyan);
    margin-bottom: 1.4rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-4px) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 213, 255, 0.3);
    border-color: transparent;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-card p {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #a0aec0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,213,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(112,0,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start; /* align top instead of center to remove blank space */
}

/* Left Visual */
.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-badge-card {
    position: absolute;
    bottom: -18px;
    left: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.4rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 5;
}

.badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.about-stat-pill {
    position: absolute;
    top: -16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 213, 255, 0.3);
    z-index: 5;
    white-space: nowrap;
}

.about-stat-pill i {
    font-size: 1rem;
}

/* Right Content */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 1.2rem;
    background: rgba(0, 213, 255, 0.07);
    border: 1px solid rgba(0, 213, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-highlight {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-body {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    background: #f1f5ff;
    border-color: rgba(0, 213, 255, 0.2);
    transform: translateX(6px);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(0,213,255,0.12), rgba(112,0,255,0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-purple);
}

.pillar-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pillar-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 213, 255, 0.25);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 213, 255, 0.4);
}

.about-cta i {
    transition: transform 0.3s ease;
}

.about-cta:hover i {
    transform: translateX(5px);
}

/* ============================================
   Clients Slider Marquee
   ============================================ */
.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, #050810 0%, transparent 100%);
}
.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, #050810 0%, transparent 100%);
}

.clients-track {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scroll 25s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-slide {
    width: 180px;
    height: 90px;
    background: #ffffff;
    border-radius: 10px;
    margin: 0 1rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.client-slide img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends slight grey backgrounds into the white card seamlessly */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-212px * 9)); } /* width(180) + margins(32) = 212 * 9 */
}

/* About responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-main-img {
        height: 320px;
    }
    .about-title {
        font-size: 2rem;
    }
    .about-badge-card {
        left: 10px;
    }
    .about-stat-pill {
        right: 10px;
    }
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--accent-cyan);
    border-color: rgba(255,255,255,0.2);
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

/* Footer */
.footer {
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    background: #0f172a;
    padding: 5rem 0 2rem;
    border-top: none;
    color: var(--text-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--card-border);
}

.social-icons a:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================= */
/*       Mobile Responsiveness               */
/* ========================================= */

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
        overflow-y: auto;
    }

    .nav-links.mobile-active {
        left: 0;
    }

    .nav-links a, .dropbtn {
        font-size: 1.5rem;
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .dropdown {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-content {
        position: static !important; /* force kill base absolute positioning */
        transform: none !important; /* wipe out translateX(-50%) from base css */
        top: auto !important;
        left: auto !important;
        box-shadow: none;
        border: none;
        min-width: unset;
        width: 100%;
        display: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .dropdown:active .dropdown-content, .dropdown:hover .dropdown-content {
        display: flex;
        flex-direction: column;
        visibility: visible;
        opacity: 1;
    }

    .dropdown-content a.dropdown-item {
        color: rgba(255,255,255,0.9);
        background: transparent;
        border: 1px solid rgba(255,255,255,0.1);
        margin: 0.5rem 10%; 
        width: 80%;
        padding: 1rem;
        border-radius: 12px;
        justify-content: flex-start;
        font-size: 1rem;
    }

    .dropdown-content a.dropdown-item:hover {
        background: rgba(255,255,255,0.05);
        color: #fff;
        padding-left: 1rem; /* stop it from drifting violently right on mobile */
    }

    /* Hero Layout Mobile Fix */
    .hero-fullscreen {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 60px;
        justify-content: flex-start;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        text-align: center;
        margin-top: 0;
        gap: 0; /* Remove gap so we control space via margin */
    }

    .hero-main-txt {
        margin-bottom: 2rem;
    }

    .hero-main-txt .giant-txt {
        font-size: 3.8rem;
    }

    /* Scale the Echo Graphic down correctly */
    .hero-echo-container {
        transform: scale(0.65);
        margin: -50px auto -60px auto; 
        /* The negative margins eat up the dead pixel space left by scaling 450px to 292px */
    }

    .bg-marquee {
        font-size: 10rem;
    }
    
    /* Global Adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    .section-title h2 { font-size: 2.2rem; }
    .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-main-txt .giant-txt { font-size: 3.2rem; }
    
    .hero-echo-container { 
        transform: scale(0.55); 
        margin: -70px auto -100px auto;
    }

    .nav-cta { display: none; } /* Show only hamburger on smallest screens */
}

/* ============================================
   Services / Expertise Page Specific
   ============================================ */
.services-page-hero {
    padding: 14rem 0 8rem;
    background: #0f172a url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2000&auto=format&fit=crop') center/cover fixed no-repeat;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.services-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.7) 100%);
    z-index: 0;
}

.sph-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 213, 255, 0.3) 0%, rgba(112, 0, 255, 0.15) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: sphPulse 6s infinite alternate ease-in-out;
}

@keyframes sphPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.sph-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sph-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(0, 213, 255, 0.2);
    border-radius: 50px;
    background: rgba(0, 213, 255, 0.05);
}

.sph-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sph-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Detailed rows list */
.srv-list-section {
    padding: 6rem 0;
    background: #ffffff;
}

.srv-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.srv-detailed-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start; /* Top align picture with text */
}

/* Use grid placement instead of RTL hack for better text alignment */
.srv-detailed-row.row-reversed .srv-visual-col {
    grid-column: 2;
    grid-row: 1;
}

.srv-detailed-row.row-reversed .srv-row-content {
    grid-column: 1;
    grid-row: 1;
}

.srv-row-visual {
    position: relative;
    border-radius: 20px;
}

.srv-row-visual::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(112,0,255,0.06) 0%, transparent 70%);
    z-index: 0;
}

.srv-row-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.srv-row-icon {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 15px 30px rgba(112,0,255,0.3);
    z-index: 2;
    border: 4px solid #fff;
}

.srv-detailed-row.row-reversed .srv-row-icon {
    right: auto;
    left: -25px;
}

.srv-row-content {
    position: relative;
    z-index: 2;
}

.srv-row-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.srv-row-short {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.srv-row-full p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.srv-desc-content {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.srv-desc-content strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.srv-desc-content ul {
    list-style: none; /* We will use custom bullets */
    margin-bottom: 1.5rem;
    padding-left: 0;
}

/* Hide auto-generated <br> tags inside the lists to fix huge gaps */
.srv-desc-content ul br {
    display: none;
}

.srv-desc-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    color: #64748b;
}

.srv-desc-content ul li::before {
    content: '\f058'; /* FontAwesome circle-check */
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-cyan);
    font-size: 1rem;
}

.srv-row-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.srv-row-cta:hover {
    color: var(--accent-cyan);
}

.srv-row-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .sph-content h1 { font-size: 2.8rem; }
    .srv-detailed-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .srv-detailed-row.row-reversed .srv-visual-col {
        grid-column: 1;
        grid-row: 1;
    }
    .srv-detailed-row.row-reversed .srv-row-content {
        grid-column: 1;
        grid-row: 2;
    }
    .srv-row-img {
        height: 300px;
    }
    .srv-row-icon {
        width: 60px; height: 60px; font-size: 1.5rem;
        bottom: -15px; right: -15px; left: auto !important;
    }
}

/* ============================================
   Contact Page Specific
   ============================================ */
.contact-hero {
    padding: 12rem 0 6rem;
    background: #0f172a;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center 100%, rgba(112,0,255,0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.ch-bg {
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 213, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(112, 0, 255, 0.08) 0%, transparent 40%);
    z-index: 0;
    animation: driftSlow 15s infinite alternate linear;
}

@keyframes driftSlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.05); }
}

.ch-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ch-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ch-content p {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0 8rem;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Left - Info */
.contact-info-col h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ci-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.ci-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.ci-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, rgba(0,213,255,0.1), rgba(112,0,255,0.1));
    color: var(--accent-purple);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.ci-item:hover .ci-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.ci-text h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.ci-text p, .ci-text a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}

.ci-text a:hover {
    color: var(--accent-cyan);
}

.ci-socials p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ci-social-links {
    display: flex;
    gap: 1rem;
}

.ci-social-links a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--text-primary);
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.ci-social-links a:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,213,255,0.2);
}

/* Right - Form */
.contact-form-col {
    position: relative;
    margin-top: -8rem; /* Pull it up into the dark hero area slightly for 3D effect */
}

.cf-glass {
    background: #ffffff;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
}

.contact-form-col::before {
    content: '';
    position: absolute;
    top: 5px; right: -15px; left: 15px; bottom: -15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 24px;
    z-index: 1;
    opacity: 0.25;
    filter: blur(25px);
}

.cf-glass h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.input-wrap i {
    position: absolute;
    left: 1.2rem;
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s;
    pointer-events: none;
}

.noiseus-form input,
.noiseus-form select,
.noiseus-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.noiseus-form textarea {
    padding: 1.2rem;
    resize: vertical;
}

.noiseus-form .input-wrap.text-wrap i {
    display: none;
}

.noiseus-form input:focus,
.noiseus-form select:focus,
.noiseus-form textarea:focus {
    border-color: var(--accent-purple);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(112, 0, 255, 0.1);
}

.noiseus-form input:focus + i,
.noiseus-form select:focus + i {
    color: var(--accent-purple);
} /* This doesn't work if i is before input, but since i is before, we adjust HTML or ignore icon color change. Wait, in HTML i is before input: `<i></i><input>` */

/* If i is before input, we can use :focus-within on the wrapper */
.input-wrap:focus-within i {
    color: var(--accent-purple);
}

.input-wrap select {
    appearance: none;
    cursor: pointer;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(112,0,255,0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,213,255,0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(6px) translateY(-3px);
}

.alert.success-alert {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    .contact-form-col {
        margin-top: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cf-glass {
        padding: 2.5rem 1.5rem;
    }
    .ch-content h1 {
        font-size: 2.8rem;
    }
}

/* ============================================
   Pricing Page Specific
   ============================================ */
.pricing-hero {
    padding: 12rem 0 6rem;
    background: #0f172a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px; height: 1000px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 213, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(112, 0, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: pulsePricingHead 8s infinite alternate ease-in-out;
}

@keyframes pulsePricingHead {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.pricing-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    font-family: inherit;
    position: relative;
    z-index: 2;
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)); 
    border-radius: 50%;
    font-size: 2.2rem;
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 10px 30px rgba(0, 213, 255, 0.4);
}

.pricing-hero-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs Section */
.pricing-tabs-section {
    padding: 3rem 0 8rem;
    background: repeating-linear-gradient(
      0deg,
      #f8f9fa,
      #f8f9fa 1px,
      #ffffff 1px,
      #ffffff 5px
    );
}

.pt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tabs Nav */
.pricing-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.pt-tab {
    padding: 0.8rem 1.8rem;
    border: 1px solid #fed7aa; /* Matching peachy/orange border from image */
    background: #ffffff;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155; /* Dark bluish-grey font */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pt-tab:hover {
    border-color: #f97316;
    color: #0f172a;
}

.pt-tab.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(0, 213, 255, 0.25);
}

/* Tabs Content */
.pt-pane {
    display: none;
    animation: ptFadeIn 0.5s ease;
}

.pt-pane.active {
    display: block;
}

@keyframes ptFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pricing Cards */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 25px 60px rgba(0, 213, 255, 0.15);
}

.pc-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 213, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.pc-head {
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 2rem;
}

.pc-head h3 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.pc-price {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    word-break: break-word;
}

.pc-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 0.3rem;
    align-self: flex-end;
    padding-bottom: 0.3rem;
}

.pc-head p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pc-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
    padding: 0;
}

.pc-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pc-features li i {
    color: #a855f7;
    font-size: 1rem;
    margin-top: 4px;
}

.pc-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.pc-btn:hover {
    background: #e2e8f0;
}

.pc-btn.active-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 213, 255, 0.3);
}

.pc-btn.active-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 213, 255, 0.4);
    color: #fff;
}

@media (max-width: 900px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    .pricing-tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    .pt-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .pricing-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .pricing-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        flex-direction: column;
        gap: 0.8rem;
    }

    .title-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .pricing-hero-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .pt-container {
        padding: 0 1rem;
    }

    .pricing-tabs-nav {
        gap: 0.7rem;
        margin-bottom: 2.5rem;
    }

    .pt-tab {
        font-size: 0.9rem;
        padding: 0.7rem 1.4rem;
        max-width: 100%;
        width: auto;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .pc-price {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        justify-content: center;
        flex-wrap: wrap;
    }

    .pc-price span {
        font-size: 0.9rem;
        white-space: normal;
    }

    .pc-head h3 {
        font-size: 1.3rem;
    }

    .pc-features li {
        font-size: 0.9rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .pc-btn {
        font-size: 1rem;
        padding: 0.9rem;
    }
}

/* ============================================
   Portfolio & Blog Specific
   ============================================ */
/* Reusing hero structural code for .portfolio-hero */
.portfolio-hero {
    padding: 12rem 0 6rem;
    background: #0f172a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw; height: 60vw;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.portfolio-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.portfolio-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Portfolio Filters & Containers */
.portfolio-section, .blog-section {
    padding: 6rem 0 8rem;
    background: #f8fafc;
}

.port-container, .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.port-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(112,0,255,0.25);
}

/* Portfolio Grid */
.port-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.port-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.port-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.port-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.port-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.port-item:hover .port-img-wrap img {
    transform: scale(1.08);
}

.port-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.port-item:hover .port-overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    color: var(--accent-purple);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex; gap: 0.5rem; align-items: center;
}

.port-item:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: var(--accent-cyan);
    color: #fff;
}

.port-info {
    padding: 2rem;
}

.port-meta {
    margin-bottom: 1rem;
}

.port-cat {
    background: rgba(0, 213, 255, 0.1);
    color: var(--accent-purple);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.port-info h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.port-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-body h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.blog-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-purple);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--accent-cyan);
    gap: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 5rem;
}

.page-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-btn:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(112,0,255,0.25);
}

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

/* ============================================
   Redesigned Footer
   ============================================ */
.footer-new {
    background-color: #0a0e17; /* Replaced default grey with the brand core dark mode */
    color: #fff;
    padding: 5rem 0 0;
    font-family: inherit;
    border-top: 1px solid rgba(255,255,255,0.05); /* Slight accent line separating from previous sections */
}

.fn-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fn-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.fn-col {
    display: flex;
    flex-direction: column;
}

.fn-logo h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -1px;
}
.fn-logo .dot { color: var(--accent-cyan); }

.fn-desc {
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 90%;
}

.fn-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.fn-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fn-links li {
    margin-bottom: 1rem;
}

.fn-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.fn-links a:hover {
    color: var(--accent-cyan);
}

.fn-contact-top {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.fn-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.fn-contact-item i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-top: 3px;
}

.fn-contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s;
}
.fn-contact-item a:hover {
    color: var(--accent-cyan);
}

.mt-2 { margin-top: 0.5rem; }

.fn-address {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.fn-socials {
    display: flex;
    gap: 0.8rem;
}

.fn-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.fn-socials a:hover {
    background: #fff;
    color: #2b2b2b;
}

.fn-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.fn-bottom p {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Float Buttons */
.float-wa {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.1); }

.float-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: transparent;
    color: #9ca3af;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}
.float-top:hover {
    background: #4b5563;
    color: #fff;
    border-color: #4b5563;
}

@media (max-width: 900px) {
    .fn-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fn-contact-top {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .fn-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS — Hero & Global
   ============================================ */

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }
    .hero-content-wrapper {
        padding: 0 2rem;
        gap: 1rem;
    }
    .hero-echo-container {
        width: 360px;
        height: 360px;
    }
    .ring-3 { width: 340px; height: 340px; }
    .ring-2 { width: 240px; height: 240px; }
    .ring-1 { width: 150px; height: 150px; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {

    /* === Prevent any horizontal overflow site-wide === */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* === Navbar === */
    .navbar {
        padding: 1.2rem 1.5rem;
        background: rgba(5, 5, 16, 0.92) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 100;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 3rem;
        gap: 0;
        z-index: 200;
        overflow-y: auto;
    }

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

    .nav-links > a,
    .nav-links .dropbtn {
        font-size: 1.3rem;
        font-weight: 700;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: block;
        opacity: 1;
        color: #fff;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.25);
        color: #fff;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1.1rem;
        cursor: pointer;
        z-index: 300;
        position: relative;
    }

    /* Dropdown inside mobile nav */
    .dropdown {
        padding: 0;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        border: none;
        border-radius: 8px;
        margin-top: 0.4rem;
        padding: 0;
        min-width: unset;
        width: 100%;
        transition: none;
    }

    .dropdown-content a.dropdown-item {
        color: rgba(255,255,255,0.7);
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-content a.dropdown-item:hover {
        padding-left: 1.4rem;
        background: rgba(255,255,255,0.05);
        color: #fff;
    }

    .dropdown-divider { display: none; }

    /* === Hero Section === */
    .hero-fullscreen {
        height: auto;
        min-height: 100svh;
        overflow: visible;   /* don't clip text */
        padding: 8rem 0 5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    /* The bg stays clipped by its own overflow:hidden */
    .hero-bg {
        overflow: hidden;
    }

    .hero-content-wrapper {
        display: flex !important;  /* override grid completely */
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 0;
        text-align: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-main-txt {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .hero-main-txt .giant-txt {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        line-height: 1.15;
        letter-spacing: -0.5px;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        width: 100%;
        display: block;
    }

    /* Hide the orbit graphic on very small screens, show it scaled below text on larger mobile */
    .hero-echo-container {
        display: flex !important;
        width: 280px;
        height: 280px;
        margin: 2rem auto 0;
        overflow: visible;
    }

    .ring-3 { width: 260px; height: 260px; }
    .ring-2 { width: 175px; height: 175px; }
    .ring-1 { width: 105px; height: 105px; }

    .echo-center h3 {
        font-size: 2.2rem;
    }
    .echo-center span {
        font-size: 0.8rem;
    }

    .orbit-node {
        width: 30px;
        height: 30px;
    }

    /* Re-position nodes to fit smaller container */
    .node-1 { top: 14%; left: 14%; }
    .node-2 { top: 76%; left: 12%; }
    .node-3 { top: 20%; right: 8%; }
    .node-4 { top: 64%; right: 2%; }
    .node-5 { top: -2%; left: 50%; margin-left: -15px; }
    .node-6 { bottom: -2%; left: 45%; margin-left: -15px; }

    /* === Background marquee — prevent it widening the page === */
    .bg-marquee-container {
        width: 100%;
        overflow: hidden;
    }

    /* === Services Grid === */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .services-container {
        padding: 0 1.25rem;
    }

    /* === About Section === */
    .about-container {
        padding: 0 1.25rem;
        grid-template-columns: 1fr !important;
    }

    .about-title {
        font-size: 1.9rem;
    }

    .about-main-img {
        height: 260px;
    }

    /* === Section Head === */
    .section-head h2 {
        font-size: 2rem;
    }

    /* === Footer === */
    .fn-grid {
        grid-template-columns: 1fr !important;
    }

    .fn-contact-top {
        flex-direction: column;
        gap: 1rem;
    }

    /* === Global overflow guard for all sections === */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* --- Small Mobile (≤ 480px) --- */
@media (max-width: 480px) {
    .hero-main-txt .giant-txt {
        font-size: clamp(1.8rem, 9vw, 2.5rem) !important;
    }

    .navbar {
        padding: 1rem 1.2rem;
    }

    .section-head h2 {
        font-size: 1.75rem;
    }

    .about-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Ensure hamburger is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.mobile-only-contact {
    display: none !important;
}

@media (max-width: 900px) {
    .mobile-only-contact {
        display: block !important;
        margin-top: 1.5rem;
        background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
        color: #fff !important;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-align: center;
        font-weight: 700;
        opacity: 1 !important;
        text-decoration: none;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 213, 255, 0.2);
    }
}
