/* --- Reset & Variables --- */
:root {
    /* Color Palette */
    --bg-dark: #0f111a;
    --bg-darker: #090a0f;
    --bg-card: rgba(25, 28, 41, 0.6);
    --bg-card-hover: rgba(35, 39, 58, 0.8);

    --text-primary: #f0f2f8;
    --text-secondary: #a0a6b5;

    --primary: #6366f1;
    /* Indigo/Purple */
    --primary-hover: #4f46e5;
    --secondary: #0ea5e9;
    /* Cyan */
    --accent-ai: #10b981;
    /* Green for AI */
    --accent-sec: #ef4444;
    /* Red for Security */

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);

    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Transition */
    --trans-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Light Mode Overrides ─────────────────────────────────────────────────── */
[data-theme="light"] {
    --bg-dark: #f4f6fc;
    --bg-darker: #e8ecf5;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(240, 244, 255, 0.95);

    --text-primary: #0f111a;
    --text-secondary: #4b5266;

    --glass-border: rgba(0, 0, 0, 0.09);
    --glass-bg: rgba(0, 0, 0, 0.03);
}

/* Light mode: body & key surfaces */
[data-theme="light"] body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] .logo {
    color: #0f111a;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(244, 246, 252, 0.92);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .navbar {
    background: transparent;
}

[data-theme="light"] .nav-links a:not(.btn-primary-outline) {
    color: #1a1d2e;
}

[data-theme="light"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .dropdown-menu a {
    color: #4b5266;
}

[data-theme="light"] .hero::before {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(244, 246, 252, 0) 70%);
}

[data-theme="light"] .hero::after {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(244, 246, 252, 0) 70%);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .glass-header {
    background: rgba(0, 0, 0, 0.04);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .code-line {
    background: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .code-line.w-60 {
    background: rgba(99, 102, 241, 0.15);
}

[data-theme="light"] .service-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .service-card:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .service-card--featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0.95) 50%);
    border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="light"] .auto-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .auto-card:hover {
    background: #fff;
}

[data-theme="light"] .dark-bg {
    background-color: var(--bg-darker);
    border-top-color: rgba(0, 0, 0, 0.07);
    border-bottom-color: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .glass-panel {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .contact-text {
    background: linear-gradient(135deg, rgba(232, 236, 245, 0.95), rgba(244, 246, 252, 0.98));
}

[data-theme="light"] .contact-form {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: #0f111a;
}

[data-theme="light"] .method i,
[data-theme="light"] .flag-icon {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] footer {
    background: #e8ecf5;
    border-top-color: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .footer-col ul a {
    color: #4b5266;
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-bottom p {
    color: #6b7280;
}

[data-theme="light"] .social-links a {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1d2e;
}

[data-theme="light"] .btn-secondary {
    color: #1a1d2e;
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .whatsapp-float {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ─── Theme Toggle Button ───────────────────────────────────────────────────── */
.theme-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--trans-smooth);
    backdrop-filter: blur(6px);
    padding: 0;
}

.theme-toggle-btn:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(20deg) scale(1.1);
}

[data-theme="light"] .theme-toggle-btn {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.05);
    color: #4b5266;
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(99, 102, 241, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-smooth);
}

.highlight {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight.typed-text {
    border-right: 2px solid var(--primary);
    padding-right: 4px;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    auto {
        border-color: transparent
    }

    50% {
        border-color: var(--primary)
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 6rem 0;
}

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--trans-smooth);
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: #fff;
}

.btn-secondary {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-outline {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
}

.btn-primary-outline:hover {
    background: rgba(99, 102, 241, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: var(--trans-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 17, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-primary-outline) {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.btn-primary-outline):not(.dropdown-menu a)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--trans-smooth);
}

.nav-links a:not(.btn-primary-outline):not(.dropdown-menu a):hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--trans-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem !important;
    color: var(--text-secondary);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ambient glow background */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(15, 17, 26, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(15, 17, 26, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Graphic / Glass Card */
.hero-image {
    position: relative;
    perspective: 1000px;
}

.glass-card {
    background: rgba(25, 28, 41, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .glass-card {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.glass-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    gap: 8px;
    border-radius: 16px 16px 0 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.glass-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.code-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.code-line.w-80 {
    width: 80%;
}

.code-line.w-60 {
    width: 60%;
    background: rgba(99, 102, 241, 0.2);
}

.code-line.w-90 {
    width: 90%;
}

.dashboard-preview {
    margin-top: 20px;
    height: 150px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.bar.h-40 {
    height: 40%;
}

.bar.h-70 {
    height: 70%;
    animation-delay: 0.2s;
}

.bar.h-50 {
    height: 50%;
    animation-delay: 0.4s;
}

.bar.h-90 {
    height: 90%;
    animation-delay: 0.6s;
}

.bar.h-60 {
    height: 60%;
    animation-delay: 0.8s;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 33, 48, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.icon-ai {
    top: -20px;
    right: -20px;
    color: var(--accent-ai);
    animation-delay: 0s;
}

.icon-code {
    bottom: 40px;
    left: -30px;
    color: var(--secondary);
    animation-delay: 1s;
}

.icon-shield {
    bottom: -20px;
    right: 40px;
    color: var(--accent-sec);
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section Headings */
.section-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-heading p {
    font-size: 1.1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--trans-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--trans-smooth);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--trans-smooth);
}

.service-icon.highlight-bg {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-ai);
}

.service-icon.alert-bg {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-sec);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    color: var(--text-primary);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Featured service card (No-Code Automations) */
.service-card--featured {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.07) 0%, var(--bg-card) 50%);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.08);
}

.service-card--featured::before {
    background: radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
}

.service-card--featured:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

/* Inline badge pill ("Most Popular") */
.badge-inline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2em 0.65em;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-ai);
    border: 1px solid rgba(16, 185, 129, 0.3);
    vertical-align: middle;
    margin-left: 0.5rem;
    letter-spacing: 0.03em;
}

/* Automation Services Spotlight Strip */
.automation-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1100px) {
    .automation-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .automation-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .automation-strip {
        grid-template-columns: 1fr;
    }
}

.auto-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: var(--trans-smooth);
}

.auto-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.35);
    background: var(--bg-card-hover);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.auto-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-ai);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--trans-smooth);
    flex-shrink: 0;
}

.auto-card:hover .auto-card-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.08);
}

.auto-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.auto-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* About Section */
.dark-bg {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-grid {
    position: relative;
    height: 500px;
}

.img-box {
    position: absolute;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.box-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    background-color: #1e2233;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    border: 1px solid var(--glass-border);
    z-index: 2;
}

.box-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-color: #2a2f42;
    background-image: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    border: 1px solid var(--glass-border);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

.feature-list h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.feature-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Section */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-text {
    padding: 4rem;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(135deg, rgba(15, 17, 26, 0.9), rgba(25, 28, 41, 0.9));
    position: relative;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.method.align-start {
    align-items: flex-start;
}

.method.align-start i,
.method.align-start .flag-icon {
    flex-shrink: 0;
}

.flag-icon {
    font-size: 1.5rem;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.method i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-form {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--trans-smooth);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

select {
    appearance: none;
    cursor: pointer;
}

select option {
    background: var(--bg-dark);
    color: #fff;
}

/* Footer */
footer {
    background: #050608;
    padding-top: 5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.brand-col p {
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-smooth);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .about-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .glass-panel {
        grid-template-columns: 1fr;
    }

    .contact-text,
    .contact-form {
        padding: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: rgba(15, 17, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 3rem 0;
        transition: 0.4s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
        margin-bottom: 3rem;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .image-grid {
        height: 400px;
        margin-bottom: 3rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .contact-text,
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Service Details */
.service-detail-img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.areas-served-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.other-services-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.mini-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mini-service-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--trans-smooth);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mini-service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.mini-service-card i {
    font-size: 2rem;
    color: var(--primary);
}

.mini-service-card h4 {
    margin-bottom: 0px;
}

/* Dynamic Hero UI Transitions */
#hero-dynamic-ui {
    transition: opacity 0.4s ease-in-out;
}

/* UI/UX Wireframe */
.wireframe-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wf-header {
    height: 15px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 4px;
    width: 100%;
}

.wf-body {
    display: flex;
    gap: 10px;
    height: 120px;
}

.wf-sidebar {
    width: 30%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.wf-content {
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wf-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* SaaS Architecture Stack */
.saas-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    perspective: 500px;
}

.stack-layer {
    height: 30px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 8px;
    transform: rotateX(20deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-ai);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.stack-layer:nth-child(2) {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.stack-layer:nth-child(3) {
    background: rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
    color: #0ea5e9;
}

/* AI Neural Network */
.neural-net {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nn-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.nn-node {
    width: 15px;
    height: 15px;
    background: var(--accent-ai);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-ai);
    animation: pulse 2s infinite alternate;
}

.nn-lines {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(16, 185, 129, 0.3);
    z-index: 1;
    transform: translateY(-50%);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--accent-ai);
    }

    100% {
        transform: scale(1.3);
        box-shadow: 0 0 25px var(--accent-ai);
    }
}

/* No-Code Flowchart */
.flowchart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
}

.fc-block {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.fc-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

/* SEO Optimization */
.seo-ui {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-search {
    height: 35px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--text-secondary);
}

.seo-trend {
    height: 80px;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.trend-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent 49%, var(--primary) 50%, transparent 51%);
}

/* Digital Marketing */
.marketing-ui {
    position: relative;
    height: 150px;
}

.social-bubble {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.sb-1 {
    top: 10px;
    left: 10px;
}

.sb-2 {
    top: 60px;
    right: 10px;
    border-color: #0ea5e9;
}

.sb-3 {
    bottom: 10px;
    left: 40px;
    border-color: #f59e0b;
}

/* Cybersecurity Shield */
.cyber-ui {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    position: relative;
}

.shield-icon {
    font-size: 4rem;
    color: #ef4444;
    z-index: 2;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.radar-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    animation: radarExpand 2s infinite;
}

@keyframes radarExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}