/* =====================================================
   ROCKZ DIGI SOLUTIONS - Premium Digital Marketing Agency
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #000000;
    --secondary: #9800cb;
    --secondary-light: #b340e0;
    --secondary-dark: #7a00a3;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --dark-bg: #0a0a0a;
    --dark-surface: #141414;
    --dark-surface-2: #1a1a1a;
    --dark-border: #2a2a2a;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(152, 0, 203, 0.3);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-400);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* Container */
/* Specificity bumped (body .container) so the Rocky chat widget's injected
   global .container rule can never override this regardless of load order. */
body .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    transform: translateY(-50%);
}

.section-tag::before {
    left: -20px;
}

.section-tag::after {
    right: -20px;
}

.section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--dark-border);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
    background: #ffffff;
    box-shadow: 0 1px 0 #e9ecef;
}

/* Home page background */
body.home-page {
    background-color: #ffffff;
    color: #111111;
}

/* Override for Home Page navbar */
body.home-page .navbar {
    background: #ffffff;
    box-shadow: 0 1px 0 #e9ecef;
}

/* Scrolled state for Home Page */
body.home-page .navbar.scrolled {
    background: #ffffff;
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Non-home pages scrolled state */
body:not(.home-page) .navbar.scrolled {
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

.logo-suffix {
    font-family: 'Merienda', cursive;
    font-weight: 500;
    font-size: 1.5rem;
    color: #000000;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    top: 10px;
}

.logo:hover .logo-suffix,
.footer-logo:hover .logo-suffix {
    opacity: 1;
    transform: translateX(0);
    max-width: 100px;
    margin-left: -5px;
    /* Adjust spacing for right side */
}

/* Footer specific overrides */
.footer-logo .logo-image {
    max-height: 60px;
    /* Adjusted size for footer */
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo .logo-suffix {
    top: 15px;
    /* More offset for footer */
}

.logo:hover {
    color: var(--white);
}

.logo-accent {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: #000000;
    transition: var(--transition-normal);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background: #000000;
    transition: var(--transition-normal);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    background:
        radial-gradient(ellipse at 70% 15%, rgba(152, 0, 203, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 85%, rgba(107, 33, 168, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 75%, rgba(0, 217, 255, 0.06) 0%, transparent 40%),
        linear-gradient(145deg, #08011a 0%, #130328 55%, #08011a 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(152, 0, 203, 0.1) 0%, transparent 80%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(152, 0, 203, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0, 217, 255, 0.06) 0%, transparent 40%),
        radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, auto, 44px 44px;
    animation: backgroundPulse 15s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Digital Waves */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 2;
    overflow: hidden;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveMove 20s linear infinite;
    transform: translate3d(0, 0, 0);
}

.hero-wave-2 {
    height: 250px;
    opacity: 0.5;
}

.hero-wave-2 svg {
    animation: waveMove 15s linear infinite reverse;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(152, 0, 203, 0.12);
    border: 1px solid rgba(152, 0, 203, 0.35);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(248, 249, 255, 0.85);
    margin-bottom: 1.4rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(12px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9800CB;
    box-shadow: 0 0 8px #9800CB;
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 6px #9800CB;
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 16px #9800CB;
        opacity: 0.65;
    }
}

/* Floating Social Icons */
.hero-social-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.social-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(152, 0, 203, 0.2);
    animation: floatIcon 6s ease-in-out infinite;
    pointer-events: auto;
    transition: var(--transition-normal);
}

.social-float:hover {
    background: rgba(152, 0, 203, 0.2);
    border-color: var(--secondary);
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px rgba(152, 0, 203, 0.5);
}

.social-facebook {
    top: 25%;
    right: 40%;
    animation-delay: 0s;
}

.social-linkedin {
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.social-instagram {
    top: 24%;
    right: 12%;
    animation-delay: -4s;
}

.social-youtube {
    bottom: 22%;
    left: 53%;
    animation-delay: -3s;
}

/* Second set for visual balance matching the image */

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #F8F9FF;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(248, 249, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 2.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-stat-number {
    font-size: 1.55rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(152, 0, 203, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(248, 249, 255, 0.45);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Button Customizations */
.btn-primary {
    background: #ffffff;
    color: #000000;
    padding: 16px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 16px 35px;
    border-radius: 8px;
}

/* Analytics Visual */
.hero-visual {
    position: relative;
    padding: 20px;
}

.hero-analytics {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(152, 0, 203, 0.22);
    border-radius: 24px;
    padding: 30px;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.analytics-chart {
    width: 100%;
    height: auto;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s ease-out forwards infinite alternate;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.pulse-dot {
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        r: 8;
        opacity: 1;
    }

    50% {
        r: 12;
        opacity: 0.5;
    }

    100% {
        r: 8;
        opacity: 1;
    }
}

.floating-card {
    position: absolute;
    background: rgba(8, 1, 26, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(152, 0, 203, 0.28);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #F8F9FF;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(152, 0, 203, 0.1);
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.card-3 {
    top: 40%;
    right: -10%;
    animation-delay: 4s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .social-float {
        display: none;
    }
}


/* =====================================================
   CLIENTS SECTION
   ===================================================== */
.clients-section {
    padding: 100px 0 40px 0;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollRight 30s linear infinite;
}

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

.client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition-normal);
    cursor: default;
}

.client-item:hover {
    opacity: 1;
}

.client-item i {
    font-size: 1.5rem;
    color: var(--white);
}

.client-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--white);
}

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

    100% {
        transform: translateX(0);
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.about-intro h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-intro .lead {
    font-size: 1.125rem;
    color: var(--gray-300);
}

.about-details {
    margin: 1.5rem 0;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.mv-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--dark-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    transition: var(--transition-normal);
}

.mv-card:hover {
    border-color: var(--secondary);
    transform: translateX(10px);
}

.mv-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.mv-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mv-content p {
    font-size: 0.9rem;
    margin: 0;
}

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

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-xl);
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(152, 0, 203, 0.15) 0%, transparent 70%);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
}

.trust-badge i {
    color: var(--secondary);
}

.trust-badge span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* About Difference */
.about-difference {
    padding-top: 60px;
    border-top: 1px solid var(--dark-border);
}

.about-difference h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    min-width: 250px;
    flex: 1;
    max-width: 350px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(152, 0, 203, 0.3);
    box-shadow: 0 20px 50px rgba(152, 0, 203, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diff-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    transition: var(--transition-normal);
}

.diff-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.diff-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.diff-item h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.diff-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(152, 0, 203, 0.13) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(107, 33, 168, 0.11) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 5%, rgba(0, 217, 255, 0.04) 0%, transparent 40%),
        radial-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, #03000d 0%, #000000 45%, #03000d 100%);
    background-size: auto, auto, auto, 44px 44px, auto;
}

/* Animated ambient orbs */
.services::before {
    content: '';
    position: absolute;
    top: -180px;
    left: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(152, 0, 203, 0.1) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    animation: svcOrb1 22s ease-in-out infinite alternate;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -160px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.09) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    animation: svcOrb2 28s ease-in-out infinite alternate;
}

@keyframes svcOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(90px, 80px) scale(1.15);
    }
}

@keyframes svcOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-70px, -60px) scale(1.1);
    }
}

/* Ensure content sits above pseudo-elements */
.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: linear-gradient(155deg, #181818 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Top gradient accent line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary) 40%, var(--secondary-light) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Inner radial glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(152, 0, 203, 0.09) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(152, 0, 203, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(152, 0, 203, 0.12),
        0 0 40px rgba(152, 0, 203, 0.07);
    background: linear-gradient(155deg, #1c1c1c 0%, #131313 100%);
}

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

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

.service-icon {
    width: 58px;
    height: 58px;
    background: rgba(152, 0, 203, 0.08);
    border: 1px solid rgba(152, 0, 203, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: rgba(152, 0, 203, 0.16);
    border-color: rgba(152, 0, 203, 0.45);
    box-shadow: 0 0 22px rgba(152, 0, 203, 0.22);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    color: var(--secondary-light);
    transform: scale(1.12);
}

.service-card h3 {
    color: #f0f0f8;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.service-card>p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(190, 190, 210, 0.58);
    margin-bottom: 1.25rem;
    flex: 1;
}

/* Feature tags as pill chips */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: rgba(248, 249, 255, 0.6);
    background: rgba(152, 0, 203, 0.08);
    border: 1px solid rgba(152, 0, 203, 0.18);
    border-radius: 50px;
    padding: 4px 12px;
    list-style: none;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.service-card:hover .service-features li {
    background: rgba(152, 0, 203, 0.13);
    border-color: rgba(152, 0, 203, 0.3);
    color: rgba(248, 249, 255, 0.75);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 14px;
    color: var(--secondary-light);
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-us {
    background: var(--dark-bg);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-visual {
    display: flex;
    justify-content: center;
}

.why-us-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-surface-2));
    border-radius: var(--radius-full);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-ring {
    position: relative;
    width: 250px;
    height: 250px;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--dark-border);
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 11.31;
    transition: stroke-dashoffset 2s ease-out;
}

.stat-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.why-us-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.why-card:hover {
    border-color: var(--secondary);
    transform: translateX(10px);
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(152, 0, 203, 0.2), rgba(152, 0, 203, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.why-icon i {
    font-size: 1.25rem;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-content h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.why-content p {
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process {
    background: var(--primary);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--dark-border);
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.step-content {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    margin: 0 10px;
    transition: var(--transition-normal);
}

.process-step:hover .step-content {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(152, 0, 203, 0.2), rgba(152, 0, 203, 0.1));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.step-content h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.875rem;
    margin: 0;
}

/* =====================================================
   CASE STUDIES SECTION
   ===================================================== */
.case-studies {
    background: var(--dark-bg);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.case-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.case-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-surface-2), var(--primary));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(152, 0, 203, 0.2) 0%, transparent 70%);
}

.case-industry {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.case-content>p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.case-metrics {
    margin-bottom: 1.5rem;
}

.metric {
    margin-bottom: 15px;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.metric-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.metric-before {
    color: var(--gray-500);
}

.metric-after {
    color: var(--secondary);
    font-weight: 600;
}

.metric-change {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(152, 0, 203, 0.2);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.case-link:hover {
    gap: 12px;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    background: var(--primary);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--secondary);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image-placeholder {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image-placeholder i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.nav-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.nav-btn i {
    color: var(--white);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.nav-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--dark-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.nav-dots .dot.active {
    width: 30px;
    background: var(--secondary);
}

/* =====================================================
   INDUSTRIES SECTION
   ===================================================== */
.industries {
    background: var(--dark-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 15px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    cursor: default;
}

.industry-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(152, 0, 203, 0.2), rgba(152, 0, 203, 0.1));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.industry-item:hover .industry-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.industry-item:hover .industry-icon i {
    color: var(--white);
}

.industry-item span {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-align: center;
    transition: var(--transition-normal);
}

.industry-item:hover span {
    color: var(--white);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(90, 0, 120, 0.70) 0%, rgba(152, 0, 203, 0.70) 100%),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2070&auto=format&fit=crop') center / cover no-repeat;
    z-index: -1;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-trust i {
    color: var(--white);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.info-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card>p {
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(152, 0, 203, 0.2), rgba(152, 0, 203, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.contact-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text a,
.contact-text address {
    color: var(--white);
    font-style: normal;
    font-size: 1rem;
}

.contact-text a:hover {
    color: var(--secondary);
}

.whatsapp-cta {
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp i {
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-surface-2);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.social-links a i {
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.social-links a:hover i {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--dark-surface-2);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(152, 0, 203, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--dark-surface);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: flex-start;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark-bg);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .footer-logo {
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.footer-social a .social-svg {
    transition: var(--transition-normal);
}

.footer-social a:hover .social-svg {
    transform: scale(1.1);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-400);
}

.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact ul li a {
    color: var(--gray-400);
}

.footer-contact ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 25px 0 90px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* =====================================================
   BACK TO TOP & WHATSAPP FLOAT
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-light);
    transform: translateY(-5px);
}

.back-to-top i {
    color: var(--white);
    font-size: 1.25rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: var(--white);
    font-size: 1.75rem;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

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

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-visual {
        order: -1;
        margin-bottom: 40px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 40px 40px;
        gap: 0;
        transition: var(--transition-normal);
        border-left: 1px solid #e9ecef;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
        width: 100%;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link.cta-btn {
        margin-top: 20px;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 7px 15px;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: auto;
        padding: 144px 0 80px;
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .service-card {
        padding: 25px;
    }

    .why-us-image-placeholder {
        max-width: 300px;
    }

    .stat-ring {
        width: 200px;
        height: 200px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .info-card,
    .contact-form-wrapper {
        padding: 25px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-item {
        padding: 20px 10px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-item span {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =====================================================
   HOME PAGE WHITE THEME — scoped to body.home-page
   ===================================================== */

/* Global text */
body.home-page p {
    color: #343a40;
}

body.home-page .section-title {
    color: #111111;
}

body.home-page .cta-content p {
    color: #ffffff;
}

body.home-page .section-subtitle {
    color: #6c757d;
}

/* Navbar (transparent at top — light background) */
body.home-page .nav-link {
    color: #000000;
}

body.home-page .nav-link.cta-btn,
body.home-page .navbar.scrolled .nav-link.cta-btn,
body.home-page .nav-menu .nav-link.cta-btn {
    color: #ffffff;
}

body.home-page .nav-link:hover,
body.home-page .nav-link.active {
    color: var(--secondary);
}

body.home-page .logo,
body.home-page .logo-suffix {
    color: #111111;
}

body.home-page .hamburger,
body.home-page .hamburger::before,
body.home-page .hamburger::after {
    background: #111111;
}

/* Scrolled state keeps the same dark text (white navbar) */
body.home-page .navbar.scrolled .nav-link {
    color: #111111;
}

body.home-page .navbar.scrolled .nav-link:hover,
body.home-page .navbar.scrolled .nav-link.active {
    color: var(--secondary);
}

body.home-page .navbar.scrolled .logo,
body.home-page .navbar.scrolled .logo-suffix {
    color: #111111;
}

body.home-page .navbar.scrolled .hamburger,
body.home-page .navbar.scrolled .hamburger::before,
body.home-page .navbar.scrolled .hamburger::after {
    background: #111111;
}

/* Mobile nav drawer */
body.home-page .nav-menu {
    background: #ffffff;
    border-left-color: #e9ecef;
}

body.home-page .nav-menu .nav-link {
    border-bottom-color: #e9ecef;
    color: #111111;
}

body.home-page .nav-menu .nav-link:hover {
    color: var(--secondary);
}

/* ── HERO (image-inspired two-column layout) ── */
body.home-page .hero {
    background: #ffffff;
    min-height: auto;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
    overflow: visible;
}

body.home-page .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Title */
body.home-page .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111111;
    text-shadow: none;
    margin-bottom: 1.5rem;
}

/* Inline decoration: rule + globe */
body.home-page .hero-title-deco {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
    margin-left: 14px;
}

body.home-page .title-rule {
    display: inline-block;
    width: 70px;
    height: 3px;
    background: #111111;
    border-radius: 2px;
    flex-shrink: 0;
}

body.home-page .hero-title-deco i {
    font-size: 1.5rem;
    color: #111111;
    -webkit-text-fill-color: #111111;
}

/* Description */
body.home-page .hero-description {
    font-size: 1rem;
    color: #6c757d;
    max-width: 440px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* CTA buttons */
body.home-page .hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Dark "Contact Us" button */
body.home-page .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #111111;
    color: #ffffff;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

body.home-page .btn-dark:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Service tags */
body.home-page .hero-services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

body.home-page .hero-svc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.875rem;
    font-family: var(--font-heading);
    color: #6c757d;
}

body.home-page .hero-svc-row span {
    color: #6c757d;
}

body.home-page .hero-svc-row sup {
    font-size: 0.6rem;
    color: #adb5bd;
    font-weight: 700;
    margin-left: 2px;
    vertical-align: super;
}

/* Right column image */
body.home-page .hero-visual {
    position: relative;
    padding: 0;
}

body.home-page .hero-img-wrapper {
    position: relative;
    border-radius: 24px;
}

body.home-page .hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Floating cards */
body.home-page .hero-card {
    position: absolute;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    z-index: 5;
}

/* Review card — bottom-left, overlaps out of image */
body.home-page .hero-card-review {
    bottom: 24px;
    left: -24px;
    background: #ffffff;
    width: 230px;
}

/* Stat card — bottom-right, overlaps out of image */
body.home-page .hero-card-stat {
    bottom: 24px;
    right: -24px;
    background: linear-gradient(145deg, #9800CB 0%, #6B21A8 100%);
    width: 180px;
}

/* Review card internals */
body.home-page .hc-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.45;
}

body.home-page .hc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

body.home-page .hc-stars i {
    color: #ffc107;
    font-size: 0.8rem;
}

body.home-page .hc-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.home-page .hc-score {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
    flex-shrink: 0;
}

body.home-page .hc-clients {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body.home-page .hc-avatars {
    display: flex;
}

body.home-page .hc-avatars span {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #9800CB, #6B21A8);
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: -6px;
}

body.home-page .hc-avatars span:first-child {
    margin-left: 0;
}

body.home-page .hc-label {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: 500;
}

/* Stat card internals */
body.home-page .hc-big {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

body.home-page .hero-card-stat h4 {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

body.home-page .hero-card-stat p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    body.home-page .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.home-page .hero-description {
        max-width: 100%;
    }

    body.home-page .hero-cta {
        justify-content: center;
    }

    body.home-page .hero-services-list {
        align-items: center;
    }

    body.home-page .hero-svc-row {
        justify-content: center;
    }

    body.home-page .hero-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    body.home-page .hero-card-review {
        left: 10px;
    }

    body.home-page .hero-card-stat {
        right: 10px;
    }
}

@media (max-width: 576px) {
    body.home-page .hero {
        padding: 120px 0 60px;
    }

    body.home-page .hero-img {
        height: 380px;
    }

    body.home-page .hero-card-review {
        width: 190px;
        left: 5px;
    }

    body.home-page .hero-card-stat {
        width: 155px;
        right: 5px;
    }
}

/* ── CLIENTS ── */
body.home-page .clients-section {
    background: #ffffff;
    border-bottom-color: #e9ecef;
}

body.home-page .clients-title {
    color: #6c757d;
}

body.home-page .client-item i,
body.home-page .client-item span {
    color: #495057;
}

.client-item img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.client-item img.client-logo-lg {
    height: 95px;
    max-width: 220px;
}

.client-item img.client-logo-xl {
    height: 115px;
    max-width: 250px;
}

/* ── ABOUT ── */
body.home-page .about {
    background: #ffffff;
}

body.home-page .about-intro h3 {
    color: #111111;
}

body.home-page .about-intro .lead {
    color: #343a40;
}

body.home-page .about-details p {
    color: #343a40;
}

body.home-page .mv-card {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .mv-content h4 {
    color: #111111;
}

body.home-page .mv-content p {
    color: #111111;
}

body.home-page .trust-badge {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .trust-badge span {
    color: #495057;
}

body.home-page .about-image-placeholder {
    border-color: #e9ecef;
}

body.home-page .about-difference {
    border-top-color: #ffffff;
}

body.home-page .about-difference h3 {
    color: #111111;
}

body.home-page .diff-item {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .diff-item h4 {
    color: #111111;
}

body.home-page .diff-item p {
    color: #6c757d;
}

body.home-page .stat-item {
    background: #f8f9fa;
    border-color: #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.home-page .stat-item:hover {
    background: #ffffff;
    border-color: rgba(152, 0, 203, 0.3);
    box-shadow: 0 20px 50px rgba(152, 0, 203, 0.1);
}

body.home-page .stat-number {
    color: #111111;
}

body.home-page .stat-label {
    color: #6c757d;
}

/* ── SERVICES ── */
body.home-page .services {
    background: #ffffff;
}

body.home-page .services::before,
body.home-page .services::after {
    display: none;
}

body.home-page .service-card {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .service-card:hover {
    background: #ffffff;
    border-color: rgba(152, 0, 203, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(152, 0, 203, 0.12);
}

body.home-page .service-card h3 {
    color: #111111;
}

body.home-page .service-card>p {
    color: #6c757d;
}

body.home-page .service-features li {
    color: #495057;
    background: rgba(152, 0, 203, 0.06);
    border-color: rgba(152, 0, 203, 0.15);
}

body.home-page .service-card:hover .service-features li {
    color: #343a40;
    background: rgba(152, 0, 203, 0.1);
}

/* ── WHY US ── */
body.home-page .why-us {
    background: #ffffff;
}

body.home-page .why-us-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-color: #e9ecef;
}

body.home-page .ring-bg {
    stroke: #e9ecef;
}

body.home-page .stat-value {
    color: #111111;
}

body.home-page .stat-desc {
    color: #6c757d;
}

body.home-page .why-card {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .why-content h3 {
    color: #111111;
}

body.home-page .why-content p {
    color: #6c757d;
}

/* ── PROCESS ── */
body.home-page .process {
    background: #ffffff;
}

body.home-page .process-timeline::before {
    background: #e9ecef;
}

body.home-page .step-content {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .step-content h3 {
    color: #111111;
}

body.home-page .step-content p {
    color: #6c757d;
}

/* ── CASE STUDIES ── */
body.home-page .case-studies {
    background: #ffffff;
}

body.home-page .case-card {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .case-image-placeholder {
    background: linear-gradient(135deg, #e9ecef, #f0f0f5);
}

body.home-page .case-content h3 {
    color: #111111;
}

body.home-page .case-content>p {
    color: #6c757d;
}

body.home-page .metric-label {
    color: #6c757d;
}

body.home-page .metric-before {
    color: #6c757d;
}

/* ── TESTIMONIALS ── */
body.home-page .testimonials {
    background: #ffffff;
}

body.home-page .testimonial-card {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .testimonial-text {
    color: #343a40;
}

body.home-page .author-info h4 {
    color: #111111;
}

body.home-page .author-info span {
    color: #6c757d;
}

body.home-page .nav-btn {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .nav-btn i {
    color: #495057;
}

body.home-page .nav-dots .dot {
    background: #dee2e6;
}

/* ── INDUSTRIES ── */
body.home-page .industries {
    background: #ffffff;
}

body.home-page .industry-item {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .industry-item span {
    color: #495057;
}

body.home-page .industry-item:hover span {
    color: #111111;
}

/* ── CONTACT ── */
body.home-page .contact {
    background: #ffffff;
}

body.home-page .info-card {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .info-card h3 {
    color: #111111;
}

body.home-page .info-card>p {
    color: #111111;
}

body.home-page .contact-text span {
    color: #6c757d;
}

body.home-page .contact-text a,
body.home-page .contact-text address {
    color: #111111;
}

body.home-page .social-links a {
    background: #ffffff;
    border-color: #e9ecef;
}

body.home-page .social-links a i {
    color: #6c757d;
}

body.home-page .contact-form-wrapper {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.home-page .form-group label {
    color: #495057;
}

body.home-page .form-group input,
body.home-page .form-group select,
body.home-page .form-group textarea {
    background: #ffffff;
    border-color: #dee2e6;
    color: #111111;
}

body.home-page .form-group input::placeholder,
body.home-page .form-group textarea::placeholder {
    color: #adb5bd;
}

body.home-page .form-group select option {
    background: #ffffff;
    color: #111111;
}

body.home-page .form-note {
    color: #6c757d;
}

/* ── FOOTER ── */
body.home-page .footer {
    background: #f8f9fa;
}

body.home-page .footer-top {
    border-bottom-color: #e9ecef;
}

body.home-page .footer-brand .footer-logo {
    color: #111111;
}

body.home-page .footer-brand p {
    color: #6c757d;
}

body.home-page .footer-tagline {
    color: #111111;
}

body.home-page .footer-social a {
    background: #ffffff;
    border-color: #e9ecef;
}

body.home-page .footer-links h4,
body.home-page .footer-contact h4 {
    color: #111111;
}

body.home-page .footer-links ul li a {
    color: #6c757d;
}

body.home-page .footer-contact ul li {
    color: #6c757d;
}

body.home-page .footer-contact ul li a {
    color: #6c757d;
}

body.home-page .footer-bottom p {
    color: #6c757d;
}

body.home-page .footer-legal a {
    color: #6c757d;
}

/* ── WHAT MAKES US DIFFERENT — stat card layout ── */
body.home-page .difference-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    max-width: 560px;
    margin: -20px auto 40px;
}

body.home-page .difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body.home-page .diff-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 28px;
    min-height: 270px;
    border-radius: 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.home-page .diff-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    border-color: #dee2e6;
}

body.home-page .diff-item.diff-accent {
    background: linear-gradient(145deg, #9800CB 0%, #6B21A8 100%);
    border-color: transparent;
}

body.home-page .diff-item.diff-accent:hover {
    box-shadow: 0 16px 40px rgba(152, 0, 203, 0.3);
}

body.home-page .diff-stat {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
    color: #111111;
    display: block;
}

body.home-page .diff-item.diff-accent .diff-stat {
    color: #ffffff;
}

body.home-page .diff-info {
    margin-top: 0;
}

body.home-page .diff-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.4rem;
}

body.home-page .diff-item.diff-accent h4 {
    color: #ffffff;
}

body.home-page .diff-item p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.55;
}

body.home-page .diff-item.diff-accent p {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 992px) {
    body.home-page .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    body.home-page .difference-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   ALL PAGES EXCEPT HOME: White section backgrounds
   ═══════════════════════════════════════════════════════ */

/* Body: white base + readable text */
body:not(.home-page) {
    background: #ffffff;
    color: #212529;
}

/* Main hero section (index.html default hero, not used on other pages but covered for safety) */
body:not(.home-page) .hero {
    background: #ffffff;
}

/* Clients / logos strip */
body:not(.home-page) .clients-section {
    background: #ffffff;
    border-bottom-color: #e9ecef;
}

/* All shared dark-bg sections */
body:not(.home-page) .about,
body:not(.home-page) .services,
body:not(.home-page) .why-us,
body:not(.home-page) .process,
body:not(.home-page) .case-studies,
body:not(.home-page) .testimonials,
body:not(.home-page) .industries,
body:not(.home-page) .cta-section,
body:not(.home-page) .contact,
body:not(.home-page) .footer {
    background: #f8f9fa;
}

/* CTA purple gradient overlay */
body:not(.home-page) .cta-bg {
    background: #f8f9fa;
}

/* Footer border */
body:not(.home-page) .footer-top {
    border-bottom-color: #e9ecef;
}


/* ── ABOUT PAGE: Explicit white backgrounds for all sections ── */
body:not(.home-page) .about-hero,
body:not(.home-page) .our-story,
body:not(.home-page) .mission-vision-section,
body:not(.home-page) .our-values,
body:not(.home-page) .stats-section,
body:not(.home-page) .why-choose,
body:not(.home-page) .about-cta {
    background: #ffffff;
}


/* ── ALL OTHER PAGES: Footer text colours matching home page ── */
body:not(.home-page) .footer-brand .footer-logo {
    color: #111111;
}

body:not(.home-page) .footer-brand p {
    color: #6c757d;
}

body:not(.home-page) .footer-tagline {
    color: #111111;
}

body:not(.home-page) .footer-social a {
    background: #ffffff;
    border-color: #e9ecef;
}

body:not(.home-page) .footer-links h4,
body:not(.home-page) .footer-contact h4 {
    color: #111111;
}

body:not(.home-page) .footer-links ul li a {
    color: #6c757d;
}

body:not(.home-page) .footer-contact ul li {
    color: #6c757d;
}

body:not(.home-page) .footer-contact ul li a {
    color: #6c757d;
}

body:not(.home-page) .footer-bottom p {
    color: #6c757d;
}

body:not(.home-page) .footer-legal a {
    color: #6c757d;
}

body:not(.home-page) .footer-logo .logo-suffix {
    color: #111111;
}


/* ── ABOUT PAGE: Card backgrounds for key sections ── */

/* Our Mission & Vision */
body:not(.home-page) .mission-vision-section .mv-card-large {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
}

/* Our Core Values */
body:not(.home-page) .our-values .value-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
}

/* What Makes Us Different */
body:not(.home-page) .why-choose .bento-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
}

/* Ready to Grow Your Business */
body:not(.home-page) .about-cta .cta-box {
    background: #9800cb;
    border: 1px solid #9800cb;
    border-radius: 16px;
}


/* ── ABOUT PAGE: CTA button matches index.html "Start Growing Today" style ── */
body:not(.home-page) .about-cta .cta-box .btn-primary {
    background: #ffffff;
    color: #9800cb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body:not(.home-page) .about-cta .cta-box .btn-primary:hover {
    background: #f8f9fa;
    color: #9800cb;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}