/* 
   ELEVATE DATA EXPERTS
   "Next-Gen Enterprise" Design System
   Theme: Deep Midnight & Electric Blue
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Core Palette - B2B Dark Slate Base */
    --bg-body: #060913;
    /* Rich Deep Midnight Space Blue */
    --bg-surface: #0b1120;
    /* Deep slate surface */
    --bg-surface-hover: #111a30;
    /* Surface hover card */
    --bg-surface-glass: rgba(11, 17, 32, 0.7);

    /* Brand Colors - Royal Blue & Sky Accents */
    --primary: #2563eb;
    /* Corporate Royal Blue */
    --primary-glow: rgba(37, 99, 235, 0.15);
    --secondary: #4f46e5;
    /* Professional Indigo */
    --accent: #0ea5e9;
    /* Clean Sky Blue */
    --accent-glow: rgba(14, 165, 233, 0.2);

    /* Text */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #62758f;

    /* UI Elements */
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(37, 99, 235, 0.15);
    --glass-nav: rgba(6, 9, 19, 0.85);
    --radius-sm: 8px;
    --radius-lg: 16px;

    /* Layout */
    --container-width: 1200px;
    --header-height: 85px;
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.08), transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.04), transparent 45%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- COMPONENTS --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    letter-spacing: 0.2px;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: -75%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-glow:hover::after {
    left: 125%;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- HEADER --- */
header {
    height: var(--header-height);
    background: var(--glass-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 75px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- HERO --- */
.hero-section {
    padding: 100px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* --- STATS BAR --- */
.stats-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(11, 17, 33, 0.5);
    padding: 30px 0;
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-info strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    color: white;
}

.stat-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CARDS & SERVICES --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background: var(--bg-surface-hover);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    background: -webkit-linear-gradient(var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-link:hover {
    gap: 12px;
    color: white;
}

/* --- INTERNAL HERO & PROJECTS --- */
.page-hero {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.1), transparent 50%);
}

.project-card-v2 {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: block;
    transition: 0.4s;
}

.project-card-v2:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.project-thumb {
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 0.9;
}

.project-body {
    padding: 30px;
}

.project-body h4 {
    font-size: 1.3rem;
    margin-bottom: 1px;
    color: white;
}

.project-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

/* --- CONTACT FORM --- */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.contact-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    background: rgba(11, 17, 33, 0.6);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(11, 17, 33, 0.9);
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border-color);
    background: #080c17;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-dark);
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-flex {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        margin: 20px auto;
    }

    .nav-menu {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        padding: 30px;
    }
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Tooltip for WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #1e293b;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- BEFORE/AFTER STYLING --- */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.ba-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.ba-card-before::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ef4444;
}

.ba-card-after::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #10b981;
}

.ba-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.ba-list-before li i {
    color: #ef4444;
    margin-top: 5px;
}

.ba-list-after li i {
    color: #10b981;
    margin-top: 5px;
}

/* --- WHY CHOOSE US & PROCESS --- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.check-item i {
    color: #10b981;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--border-color);
}

.process-step {
    display: flex;
    gap: 25px;
    position: relative;
    align-items: flex-start;
}

.process-number {
    width: 42px;
    height: 42px;
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.process-info {
    flex: 1;
    background: var(--bg-surface);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.process-info h4 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.process-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- THEMED PROJECT CARDS (DARK) --- */
.dark-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dark-project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.dark-project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.dark-project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dark-project-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dark-project-info h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 10px;
}

.dark-project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dark-btn-project {
    align-self: flex-start;
    padding: 8px 18px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.dark-btn-project:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline::before {
        left: 15px;
    }
    .process-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .process-step {
        gap: 15px;
    }
}

/* --- PREMIUM HUMAN-CRAFTED DESIGN SYSTEM --- */
.bg-mesh-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

/* Interactive ROI Calculator */
.calculator-card {
    background: linear-gradient(145deg, rgba(21, 30, 50, 0.8), rgba(11, 17, 33, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
}

.slider-group {
    margin-bottom: 25px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.slider-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.slider-value {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Custom Range input styling */
.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
    transition: transform 0.1s, background-color 0.2s;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--primary);
}

.calculator-outputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.calc-stat-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.calc-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.calc-stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Stress Timeline styling */
.stress-timeline {
    position: relative;
    max-width: 600px;
    margin: 30px auto 0;
    padding-left: 30px;
}

.stress-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(239, 68, 68, 0.2);
}

.stress-node {
    position: relative;
    margin-bottom: 25px;
}

.stress-node::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.stress-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.stress-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.stress-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Asymmetric Grid Layout */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 900px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tech Showcase Badges */
.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-badge:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.2);
}

.tech-badge i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.tech-badge:hover i {
    color: var(--accent);
}

.tech-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.tech-badge:hover span {
    color: white;
}

/* --- CORPORATE AESTHETIC ELEVATION UTILITIES --- */

.hero-wrapper {
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 15px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 25px 0 40px;
    line-height: 1.65;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.hero-stat-item {
    flex: 1;
}

.hero-stat-item-bordered {
    border-left: 1px solid var(--border-color);
    padding-left: 30px;
}

.hero-stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Card hover glow and transition enhancements */
.dark-project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dark-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
}

.process-info {
    transition: all 0.3s ease;
}

.process-step:hover .process-info {
    border-color: rgba(37, 99, 235, 0.3);
    background: var(--bg-surface-hover);
    transform: translateX(5px);
}

/* Enhanced Range Slider Track progress indicator */
.slider-group input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.08);
    height: 8px;
    border-radius: 4px;
}

.slider-group input[type="range"]:focus::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.12);
}

/* Asymmetrical columns spacing */
.asymmetric-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Navbar CTA custom styling */
.nav-cta-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-cta-btn {
    padding: 10px 25px !important;
    font-size: 0.9rem !important;
    border-radius: 50px !important;
}

/* Hero card and layout structural styling */
.hero-card-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hero-card-title {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.hero-card-subtitle {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Calculator visual improvements */
.calculator-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.calculator-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-card-title {
    margin-bottom: 30px;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
    color: white;
}

.slider-group-last {
    margin-bottom: 0 !important;
}

.calculator-outputs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.calc-stat-box-highlight {
    border-color: rgba(37, 99, 235, 0.2) !important;
    background: rgba(37, 99, 235, 0.03) !important;
}

.text-accent {
    color: var(--accent) !important;
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.3) !important;
}

.calculator-cta {
    text-align: center;
    font-size: 0.95rem !important;
    padding: 15px !important;
    border-radius: 8px !important;
}

/* Solutions & Tech Showcase Section */
.solutions-section {
    padding: 100px 0;
}

.service-offer-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.service-offer-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    background: var(--bg-surface-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card-flex {
    display: flex;
    gap: 20px;
    align-items: start;
}

.service-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 5px;
    transition: color 0.3s;
}

.service-offer-card:hover .service-card-icon {
    color: var(--accent);
}

.service-card-heading {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: white;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tech-showcase-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-showcase-title {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: white;
}

.tech-showcase-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Before vs After Section */
.before-after-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ba-card-before {
    border-color: rgba(239, 68, 68, 0.15) !important;
}

.ba-card-after {
    border-color: rgba(16, 185, 129, 0.15) !important;
}

.ba-card-title-before {
    color: #ef4444;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.ba-card-title-after {
    color: #10b981;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

/* Real Work & Video Showcase */
.dark-project-grid {
    margin-bottom: 60px;
}

.dark-btn-project {
    border-radius: 6px !important; /* Premium corporate look */
}

.video-showcase-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.video-showcase-title {
    text-align: center;
    margin-bottom: 25px;
    color: white;
}

.video-showcase-element {
    width: 100%;
    display: block;
}

.video-showcase-caption {
    text-align: center;
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Sectors Supported Section */
.sectors-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.005);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.sector-card {
    background: var(--bg-surface);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sector-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    background: var(--bg-surface-hover);
    transform: translateY(-3px);
}

.sector-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.sector-card:hover .sector-icon {
    color: var(--accent);
}

.sector-title {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

/* Partnership section */
.partnership-section {
    padding: 100px 0;
}

.partnership-checklist {
    max-width: 900px;
    margin: 0 auto;
}

.partnership-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Final CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.06), transparent 60%);
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background: #20ba5a !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

/* Contact Section & Form */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.email-error-text {
    color: #ef4444;
    display: none;
    margin-top: 5px;
    font-size: 0.85rem;
}

.contact-select {
    cursor: pointer;
}

.contact-select option {
    background: var(--bg-surface);
}

.contact-submit-btn {
    width: 100% !important;
}

/* About Page Styling */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-badge-item {
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.about-badge-item-accent {
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.about-badge-title {
    color: white;
    font-size: 1.2rem;
    display: block;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.about-badge-desc {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.about-card-highlights {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.about-values-section {
    background: var(--bg-surface);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-value-item {
    padding: 20px;
}

.about-cta-section {
    padding: 100px 0;
    text-align: center;
}

/* Service Detail Pages */
.service-detail-section {
    padding: 60px 0 100px;
}

.service-cta-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.005);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Page Hero sub-elements styling */
.page-hero h1 {
    max-width: 900px;
    margin: 15px auto 20px;
}

.page-hero .hero-subtitle,
.page-hero p.hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 700px;
}

.page-hero .highlight-badge {
    margin-bottom: 15px;
    display: inline-flex;
}

/* Service Page Sidebar Layout */
.service-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.service-sidebar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: sticky;
    top: 110px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.sidebar-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.sidebar-list li i {
    color: var(--accent);
    margin-top: 5px;
}

/* Intermediate and Final CTA layouts */
.service-cta-middle {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.service-cta-middle p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.service-cta-final {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05), transparent 60%);
}

.service-cta-final h2 {
    margin-bottom: 15px;
}

.service-cta-final p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.dark-project-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

/* Legal Pages Styling */
.legal-section {
    padding: 80px 0;
}

.legal-container {
    max-width: 800px;
    color: var(--text-muted);
}

.legal-container h3 {
    margin-top: 40px;
}

.legal-container ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-callout {
    background: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.legal-callout h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-callout p {
    font-size: 0.9rem;
    margin: 0;
}

/* About Page Specific Styles */
.about-mission-section {
    padding: 80px 0;
}
.about-mission-content h2 {
    margin-bottom: 25px;
}
.about-mission-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}
.about-badges-flex {
    display: flex;
    gap: 20px;
}
.about-card-highlights .glow-orb {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(20px);
}
.about-card-highlights h3 {
    margin-bottom: 20px;
}
.about-card-highlights p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.about-card-list {
    list-style: none;
    padding: 0;
}
.about-card-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}
.about-card-list li i {
    color: var(--primary);
}
.about-values-container {
    text-align: center;
}
.about-values-container h2 {
    margin-bottom: 50px;
}
.about-value-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}
.about-value-item i.color-primary { color: var(--primary); }
.about-value-item i.color-secondary { color: var(--secondary); }
.about-value-item i.color-accent { color: var(--accent); }
.about-value-item p {
    color: var(--text-muted);
}
.about-cta-section h2 {
    margin-bottom: 20px;
}
.about-cta-section p {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Honeypot field for anti-spam */
.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -9999px;
    height: 0;
    width: 0;
    z-index: -1;
}

/* --- CONTACT GRID & DETAILS (ADDRESS, PHONE, DIRECTOR) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-details-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Directors Grid & Card styling */
.directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.director-card {
    background: linear-gradient(145deg, rgba(21, 30, 50, 0.6), rgba(11, 17, 33, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.director-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.director-photo-wrapper {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-info {
    width: 100%;
}

.director-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.director-title {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.director-quote {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 600px) {
    .directors-grid {
        grid-template-columns: 1fr;
    }
}

/* Info Cards styling */
.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    background: var(--bg-surface-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.info-card-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.info-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-link {
    color: var(--text-main);
    transition: color 0.2s;
    font-weight: 600;
}

.info-link:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}