:root {
    --ink: #0f172a;
    --muted: #475569;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --primary: #007fff;
    --accent: #a855f7;
    --violet: #8b5cf6;
    --coral: #f43f5e;
    --green: #10b981;
    --radius: 16px;
    --logo-gradient: linear-gradient(135deg, #007fff 0%, #a855f7 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Themes - Harmonized with Brand Blue/Violet */
.theme-teal { --primary: #00d2ff; --accent: #007fff; }
.theme-violet { --primary: #a855f7; --accent: #007fff; }
.theme-green { --primary: #007fff; --accent: #a855f7; } /* Redirecting green to brand blue */
.theme-indigo { --primary: #4f46e5; --accent: #a855f7; }
.theme-coral { --primary: #007fff; --accent: #f43f5e; } /* Keeping coral but pairing with blue */
.theme-slate { --primary: #0f172a; --accent: #007fff; }
.theme-blue { --primary: #007fff; --accent: #a855f7; }

* { box-sizing: border-box; }
a { color: inherit; text-decoration: none !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
p { color: var(--muted); line-height: 1.8; font-size: 16px; }

/* Global Link Decoration Removal */
.navbar-nav .nav-link, .footer-brand a, .site-footer a, .mega-menu a, .breadcrumb-item a {
    text-decoration: none !important;
}

/* Floating Decorative Icons */
.floating-icon {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    animation: float-rotate 10s infinite linear;
    color: var(--primary);
}

@keyframes float-rotate {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(10deg); }
    66% { transform: translate(-10px, 10px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

body { 
    margin: 0; 
    color: var(--ink); 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: #fff; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { 
    font-weight: 800; 
    letter-spacing: -0.03em; 
    color: var(--ink);
    line-height: 1.1;
}

.header-logo { height: 45px; width: auto; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); } /* Making it white for dark footer if needed, or just standard */

/* Tech Theme Elements */
.tech-grid {
    background-image: radial-gradient(var(--line) 1px, transparent 1px);
    background-size: 30px 30px;
}

.glow-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}
.reveal.is-visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Animations */
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.scroll-reveal-left { transform: translateX(-50px); opacity: 0; transition: all 1s ease; }
.scroll-reveal-right { transform: translateX(50px); opacity: 0; transition: all 1s ease; }
.is-visible .scroll-reveal-left, .is-visible .scroll-reveal-right { transform: translateX(0); opacity: 1; }

/* Header & Nav */
/* Topbar Redesign */
.topbar { 
    background: #020617; 
    color: #e2e8f0; 
    font-size: 13px; 
    padding: 10px 0; 
    font-weight: 600; 
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.02em;
}
.topbar-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.topbar-link:hover {
    color: #fff !important;
}
.topbar-link i {
    font-size: 14px;
    margin-right: 8px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.topbar-link:hover i {
    transform: scale(1.2);
    color: #fff;
}
.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}
.topbar-social-link {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
}
.topbar-social-link:hover {
    background: var(--logo-gradient);
    color: #fff !important;
    transform: translateY(-2px);
}
.topbar-badge {
    background: rgba(0, 127, 255, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 127, 255, 0.2);
}
.topbar-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-glow 2s infinite;
}

.site-header { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1020; 
    transition: all 0.3s ease;
}

.navbar { min-height: 90px; padding: 0.5rem 0; }
.navbar-brand { font-size: 26px; font-weight: 900; color: var(--ink); display: flex; align-items: center; margin-right: 2rem; }
.brand-text { background: var(--logo-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.brand-mark { 
    display: inline-grid; 
    place-items: center; 
    width: 44px; 
    height: 44px; 
    color: #fff; 
    background: var(--logo-gradient); 
    border-radius: 12px; 
    margin-right: 12px; 
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0, 127, 255, 0.35);
}

.navbar-nav .nav-item { margin: 0 2px; }
.nav-link { font-weight: 700; color: #334155 !important; font-size: 15px; padding: 12px 18px !important; border-radius: 50px; transition: all 0.3s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--soft); }

/* Mega Menu & Dropdowns */
.dropdown-menu { 
    padding: 24px; 
    border-radius: 24px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important; 
    margin-top: 10px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    border: none !important;
}
.hover-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Light Theme */
.mega-menu, .about-menu {
    background: #ffffff !important; 
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: var(--shadow-xl);
}

.mega-menu .mega-title, .about-menu .mega-title { color: var(--primary); }
.mega-menu .mega-link span, .about-menu .mega-link span { color: var(--ink); }
.mega-menu .mega-link small, .about-menu .mega-link small { color: var(--muted); }
.mega-menu .mega-link:hover, .about-menu .mega-link:hover { background: var(--soft); }
.mega-menu .mega-pill { background: #f8fafc; border-color: rgba(0,0,0,0.05); color: var(--ink); }
.mega-menu .mega-pill:hover { background: var(--soft); border-color: var(--primary); }
.mega-menu .mega-pill small { color: var(--muted); }
.mega-menu .mega-simple { color: var(--muted); }
.mega-menu .mega-simple:hover { color: var(--primary); }

.mega-menu { width: 100vw; left: 0; right: 0; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.mega-title { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 20px; }

.mega-link { 
    display: flex; 
    align-items: flex-start; 
    gap: 16px; 
    padding: 12px; 
    border-radius: 12px; 
    transition: all 0.2s ease; 
    margin-bottom: 8px;
}
.mega-link:hover { background: var(--soft); transform: translateX(5px); }
.mega-link i { font-size: 24px; color: var(--primary); flex-shrink: 0; }
.mega-link span { display: block; font-weight: 700; color: var(--ink); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; }
.mega-link small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.mega-pill { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 12px 18px; 
    border-radius: 16px; 
    background: var(--soft); 
    border: 1px solid var(--line); 
    font-weight: 700; 
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    height: 100%;
}
.mega-pill:hover { border-color: var(--primary); background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.mega-pill i { color: var(--primary); font-size: 20px; flex-shrink: 0; }
.mega-pill span { display: flex; flex-direction: column; overflow: hidden; }
.mega-pill small { font-size: 11px; color: var(--muted); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; margin-top: 2px; }

.mega-simple { display: block; font-weight: 600; color: var(--muted); padding: 8px 0; font-size: 15px; transition: all 0.2s ease; }
.mega-simple:hover { color: var(--primary); padding-left: 8px; }

.client-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.client-cloud span { background: var(--soft); color: var(--muted); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

.about-menu { min-width: 320px; }

/* Buttons */
.btn { 
    border-radius: 50px; 
    font-weight: 700; 
    padding: 14px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary { 
    background: var(--logo-gradient); 
    border: none; 
    color: #ffffff !important; 
    box-shadow: 0 10px 20px rgba(0, 127, 255, 0.2);
}
.btn-primary:hover { 
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 127, 255, 0.3);
    opacity: 1;
}
.btn-outline-dark {
    border: 2px solid var(--ink);
    color: var(--ink);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-3px);
}
.btn-enquiry { 
    background: var(--logo-gradient); 
    border: none; 
    padding: 12px 28px !important;
    font-size: 14px !important;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Sections */
.section { padding: 120px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: #020617; color: #fff; }
.section-dark p { color: #94a3b8; }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin-top: 16px; }

/* Hero */
.hero { 
    position: relative; 
    overflow: hidden; 
    padding: 80px 0 120px; 
    background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 127, 255, 0.1), transparent 40%),
                #fff;
}
.hero h1 { 
    font-size: clamp(54px, 9vw, 96px); 
    margin: 24px 0 32px; 
}
.hero p { font-size: 22px; margin-bottom: 48px; max-width: 640px; }

/* Inner Hero */
.inner-hero { 
    padding: 100px 0 80px; 
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

/* Breadcrumb in Hero */
.inner-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}
.inner-hero .breadcrumb-item, .inner-hero .breadcrumb-item a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.inner-hero .breadcrumb-item.active {
    color: var(--primary);
}
.inner-hero .breadcrumb-item + .breadcrumb-item::before {
    color: var(--line);
}
.inner-hero h1 { font-size: clamp(40px, 6vw, 64px); margin-top: 16px; }

/* Global overrides for MNC feel */
.section-kicker { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--primary); 
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; 
    text-transform: uppercase; 
    font-size: 14px; 
    letter-spacing: 0.15em; 
}
.section-kicker i { font-size: 18px; }

/* Cards */
.feature-card { 
    height: 100%; 
    padding: 48px; 
    background: #fff; 
    border: 1px solid rgba(0, 0, 0, 0.05); 
    border-radius: 32px; 
    box-shadow: var(--shadow-lg); 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--logo-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover { 
    transform: translateY(-12px); 
    box-shadow: var(--shadow-xl); 
    border-color: rgba(0, 127, 255, 0.1);
}
.feature-card:hover::before { opacity: 1; }

.card-icon { 
    width: 72px; 
    height: 72px; 
    border-radius: 20px; 
    background: var(--logo-gradient); 
    margin-bottom: 32px;
    box-shadow: 0 12px 24px rgba(0, 127, 255, 0.2);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px;
}

.feature-card h3 { font-size: 24px; margin-bottom: 16px; }
.feature-card p { font-size: 15px; margin-bottom: 24px; }
.feature-card a { 
    font-weight: 700; 
    color: var(--primary); 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 14px;
}
.feature-card a i { transition: transform 0.3s ease; }
.feature-card a:hover i { transform: translateX(5px); }

/* Feature List (Detail Page) */
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-item i { font-size: 28px; color: var(--primary); flex-shrink: 0; }
.feature-text strong { display: block; color: var(--ink); font-size: 18px; margin-bottom: 4px; }

/* Visual Section Card (Detail Page) */
.visual-section-card { 
    padding: 32px; 
    border-radius: 24px; 
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--line);
}
.visual-section-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.visual-thumb { height: 200px; background: var(--soft); border-radius: 16px; margin-bottom: 24px; display: grid; place-items: center; overflow: hidden; }
.visual-thumb img { width: 100%; height: 100%; object-fit: cover; }
.visual-thumb i { font-size: 56px; color: var(--primary); opacity: .2; }

/* Logo Strip */
.logo-strip { padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.logo-strip p { text-align: center; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 40px; }
.logo-marquee { 
    display: flex; 
    gap: 80px; 
    overflow: hidden; 
    width: 100%; 
    position: relative; 
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 1;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.logo-marquee > * {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-marquee-inner {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
}

.client-logo-bg {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-15px) rotate(15deg); }
}
.logo-marquee span { font-size: 24px; font-weight: 800; color: var(--ink); opacity: 0.4; transition: all 0.3s ease; }
.logo-marquee span:hover { opacity: 1; transform: scale(1.1); }

/* Mini Grid for Industries */
.mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.mini-grid a { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: center; 
    gap: 16px; 
    padding: 32px; 
    background: #fff; 
    border: 1px solid var(--line); 
    border-radius: 24px; 
    font-weight: 700; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.mini-grid a i { font-size: 32px; color: var(--primary); }
.mini-grid a:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-xl); 
}

/* Case Slider */
.case-slide { 
    padding: 80px; 
    text-align: center; 
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 40px; 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    margin: 0 20px;
}
.case-slide i { font-size: 64px; color: var(--primary); margin-bottom: 0; display: block; }
.case-slide h3 { font-size: 40px; color: #fff; margin-bottom: 20px; }
.case-slide p { font-size: 20px; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; color: #94a3b8; }

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; top: 50%; transform: translateY(-50%); opacity: 1; }
.carousel-control-prev { left: -30px; }
.carousel-control-next { right: -30px; }

/* Stats Row */
.stats-row { display: flex; justify-content: space-between; gap: 40px; }
.stats-row div { text-align: center; flex: 1; }
.stats-row strong { display: block; font-size: 56px; font-weight: 800; background: var(--logo-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.stats-row span { font-size: 16px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Quote Card */
.quote-card { 
    padding: 50px; 
    border-radius: 32px; 
    background: #fff; 
    border: 1px solid var(--line); 
    position: relative; 
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}
.quote-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.quote-card p { font-size: 20px; font-weight: 500; line-height: 1.6; margin-bottom: 32px; color: var(--ink); }
.opacity-05 { opacity: 0.05; }

/* Tech Orbit */
.tech-orbit { 
    position: relative; 
    min-height: 520px; 
    border-radius: 40px; 
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04); 
    box-shadow: var(--shadow-xl); 
    display: grid;
    place-items: center;
}
.orbit-core { 
    width: 160px; 
    height: 160px; 
    background: var(--logo-gradient); 
    box-shadow: 0 25px 50px rgba(0, 127, 255, 0.4);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 2;
    animation: breathe 4s ease-in-out infinite;
}
.orbit-core i { font-size: 48px; }
.orbit-core span { font-weight: 800; font-size: 18px; margin-top: 4px; }

.orbit-card { 
    position: absolute;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px; 
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}
.orbit-card i { color: var(--primary); font-size: 20px; }

.card-a { top: 15%; right: 10%; animation-delay: 0s; }
.card-b { bottom: 20%; right: 15%; animation-delay: -1s; }
.card-c { top: 25%; left: 10%; animation-delay: -2s; }
.card-d { bottom: 15%; left: 20%; animation-delay: -3s; }

/* Query Form */
/* Discovery Section Gradient */
.query-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}
.query-panel {
    background: #fff;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
.query-panel h2 { font-size: 48px; margin: 20px 0 24px; }
.query-panel p { font-size: 18px; }

.form-control, .form-select { 
    border-radius: 12px; 
    padding: 16px 20px; 
    border: 2px solid var(--line);
    background: var(--soft);
    font-weight: 500;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus { 
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 127, 255, 0.1);
}
.form-label { font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--ink); }

/* Footer */
/* Footer Redesign - Variant 2 */
.site-footer {
    background: #020617;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-variant-2 .footer-col-head {
    color: #fff !important;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}
.footer-variant-2 .footer-col-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--logo-gradient);
    border-radius: 10px;
}
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 28px; font-size: 20px; font-weight: 700; }

.site-footer a, .site-footer p, .copyright-bar a, .copyright-bar p {
    color: #ffffff !important;
    opacity: 0.8;
}

.site-footer a { font-weight: 500; display: block; margin-bottom: 14px; transition: all 0.3s ease; font-size: 15px; }

.site-footer a:hover, .copyright-bar a:hover {
    color: #ffffff !important;
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact-info a { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.footer-contact-info i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover i {
    background: var(--primary) !important;
    color: #fff;
    transform: scale(1.1);
}

.footer-contact-info .text-muted {
    color: #ffffff !important;
    opacity: 0.8;
}

.footer-contact-info .text-primary {
    color: #ffffff !important;
}

.socials { display: flex; gap: 12px; }
.socials a { 
    width: 44px; 
    height: 44px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 12px; 
    display: grid; 
    place-items: center; 
    color: #fff; 
    font-size: 20px; 
    transition: all 0.3s ease; 
    margin-bottom: 0;
}
.socials a:hover { background: var(--logo-gradient); transform: translateY(-5px) rotate(8deg); color: #fff; }

.copyright-bar {
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright-bar p { font-size: 14px; font-weight: 500; }

.footer-map-placeholder {
    width: 100%;
    height: 200px;
    background: #0f172a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 20px;
}
.fw-black { font-weight: 900; }
.z-1 { z-index: 1; }
.hero-visual-card { transition: all 0.5s ease; border: 1px solid var(--line); }
.hero-visual-card:hover { transform: translateY(-10px) rotate(1deg); }

/* Detail Page Enhancements */
.feature-icon-box { 
    width: 60px; 
    height: 60px; 
    background: var(--soft); 
    border-radius: 16px; 
    display: grid; 
    place-items: center; 
    font-size: 24px; 
    color: var(--primary); 
    flex-shrink: 0; 
    transition: all 0.3s ease;
    border: 1px solid var(--line);
}
.feature-item:hover .feature-icon-box { background: var(--logo-gradient); color: #fff; transform: scale(1.1) rotate(5deg); border-color: transparent; }

.tech-icon { 
    width: 40px; 
    height: 40px; 
    background: var(--soft); 
    border-radius: 10px; 
    display: grid; 
    place-items: center; 
    color: var(--primary); 
    font-size: 18px; 
}
.tech-item span { font-size: 15px; font-weight: 700; color: var(--muted); }
.tech-item:hover .tech-icon { background: var(--primary); color: #fff; }
/* Button Fixes */
.btn-case-study {
    padding: 8px 20px !important;
    font-size: 14px !important;
    gap: 8px;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-case-study i {
    font-size: 1rem;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%) !important;
}

.bg-soft-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

/* Testimonials Slider */
.testimonials-slider {
    padding: 40px 0;
}
.testimonial-card-v2 {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.testimonial-card-v2:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Detail Page Full Case Study */
.case-study-main {
    position: relative;
}
.case-study-nav-sticky {
    position: sticky;
    top: 120px;
}
.cs-nav-item {
    display: block;
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.cs-nav-item:hover, .cs-nav-item.active {
    background: var(--soft);
    color: var(--primary);
}

/* Systemized Modules Images */
.visual-section-card .visual-thumb {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}
.visual-section-card .visual-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.visual-section-card:hover .visual-thumb img {
    transform: scale(1.1);
}

.bg-logo-gradient {
    background: var(--logo-gradient) !important;
}

.text-gradient {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Cards Enhancement */
.product-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--line);
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary);
}
.product-thumb {
    overflow: hidden;
}
.product-thumb img {
    transition: transform 0.6s ease;
}
.product-card:hover .product-thumb img {
    transform: scale(1.1);
}
.product-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.product-card:hover .product-overlay {
    opacity: 1;
}

/* Process Timeline */
.process-step-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--line) !important;
}
.process-step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-xl) !important;
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--logo-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.cta-box-inline {
    background: var(--logo-gradient);
}
.hover-up { transition: transform 0.3s ease; }
.hover-up:hover { transform: translateY(-5px); }

/* Minimalist Feature Cards */
.minimalist-feature-card {
    padding: 20px 0;
    transition: all 0.3s ease;
}
.minimalist-feature-card .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.minimalist-feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.minimalist-feature-card h3 {
    color: var(--ink);
    letter-spacing: -0.01em;
}

/* Buttons enhancement */
.btn-light {
    background: #fff;
    color: var(--primary);
    border: none;
}
.btn-light:hover {
    background: var(--soft);
    transform: translateY(-2px);
}

.step-number { 
    width: 48px; 
    height: 48px; 
    background: var(--logo-gradient); 
    color: #fff; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    font-weight: 900; 
    font-size: 18px; 
    box-shadow: 0 10px 20px rgba(0, 127, 255, 0.3);
}
.process-step h4 { margin-top: 1rem; color: var(--ink); }

/* Animations */
@keyframes float { 
    0%, 100% { transform: translateY(0) rotate(0); } 
    50% { transform: translateY(-20px) rotate(1deg); } 
}
@keyframes breathe { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.05); } 
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile Menu Panel Fixes */
.mobile-menu-panel {
    border-radius: 0 !important;
}

/* Mobile Responsiveness & Fixes */
@media (max-width: 991.98px) {
    .section { padding: 30px 0; }
    .section-head { margin-bottom: 20px; }
    .section-head h2 { font-size: 22px !important; line-height: 1.2; }
    .section-kicker { font-size: 10px; letter-spacing: 0.1em; }
    
    .hero { padding: 20px 0 40px; text-align: center; }
    .hero h1 { font-size: 28px !important; margin: 5px 0 10px; line-height: 1.1; }
    .hero p { font-size: 15px !important; margin-bottom: 20px; margin-left: auto; margin-right: auto; line-height: 1.4; }
    .hero-actions { justify-content: center; flex-direction: column; gap: 10px !important; margin-top: 20px !important; }
    .hero-actions .btn { width: 100%; justify-content: center; padding: 10px 18px; font-size: 13px; }
    
    .btn { padding: 8px 16px; font-size: 13px; }
    .btn-lg { padding: 10px 20px; font-size: 14px; }
    
    .logo-strip { padding: 20px 0; }
    .logo-strip p { font-size: 11px; margin-bottom: 15px; }
    .logo-marquee { gap: 20px; }
    .logo-marquee span { font-size: 16px; }
    
    .tech-orbit { min-height: 280px; margin-top: 20px; }
    .orbit-core { width: 80px; height: 80px; font-size: 12px; }
    .orbit-core i { font-size: 24px; }
    .orbit-card { padding: 6px 10px; font-size: 11px; }
    
    .stats-row { flex-direction: column; gap: 15px; padding: 20px !important; }
    .stats-row div { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
    .stats-row div:last-child { border-bottom: none; padding-bottom: 0; }
    .stats-row strong { font-size: 28px; margin-bottom: 2px; }
    .stats-row span { font-size: 11px; }
    
    .query-panel { grid-template-columns: 1fr; gap: 0; padding: 0 !important; border-radius: 15px; overflow: hidden; }
    .query-info { padding: 25px 15px !important; }
    .query-info h2 { font-size: 22px !important; margin: 5px 0 10px; }
    .query-info p { font-size: 14px; }
    .query-form { padding: 25px 15px !important; }
    
    .form-control, .form-select { padding: 10px 12px; font-size: 13px; }
    .form-label { font-size: 11px; margin-bottom: 4px; }
    
    /* Animation Fix for Mobile */
    .reveal { 
        opacity: 1 !important; 
        transform: translateY(0) !important; 
        transition: none !important;
    }
    
    /* Case Slide Mobile */
    .case-slide { padding: 25px 12px; margin: 0; border-radius: 15px; }
    .case-slide h3 { font-size: 20px !important; margin-top: 15px !important; }
    .case-slide p { font-size: 14px !important; margin-bottom: 20px; }
    .case-slide i.display-6 { font-size: 2rem !important; }
    
    .carousel-control-prev, .carousel-control-next { width: 30px; height: 30px; }
    
    /* Gap and Padding fixes */
    .g-5, .gx-5, .gy-5 { --bs-gutter-x: 1rem !important; --bs-gutter-y: 1rem !important; }
    .g-4, .gx-4, .gy-4 { --bs-gutter-x: 1rem !important; --bs-gutter-y: 1rem !important; }
    .g-3, .gx-3, .gy-3 { --bs-gutter-x: 0.75rem !important; --bs-gutter-y: 0.75rem !important; }
    
    /* Inner Hero Mobile */
    .inner-hero { padding: 20px 0 !important; }
    .inner-hero .py-5 { padding-top: 0 !important; padding-bottom: 0 !important; }
    .inner-hero h1 { font-size: 24px !important; line-height: 1.2; margin-bottom: 10px !important; }
    .inner-hero .lead { font-size: 14px !important; }
    .hero-visual-card { margin-top: 20px; }
    
    /* Navbar Mobile Fixes */
    .navbar { min-height: 50px; }
    .header-logo { height: 24px; }
    
    /* CTA Box Mobile */
    .content-footer-cta { margin-top: 20px !important; }
    .cta-box-inline { text-align: center; padding: 20px 15px !important; border-radius: 20px !important; }
    .cta-box-inline h2 { font-size: 18px !important; margin-bottom: 8px !important; text-align: center !important; }
    .cta-box-inline p { font-size: 12px !important; line-height: 1.4; text-align: center !important; }
    .cta-box-inline .text-lg-end { text-align: center !important; margin-top: 15px; }
    .cta-box-inline .btn { width: auto !important;  padding: 8px 20px !important; font-size: 12px !important; }

    /* Case study content spacing */
    .case-study-main .py-4 { padding-top: 0.15rem !important; padding-bottom: 0.15rem !important; }
    .case-study-main h2 { font-size: 17px !important; margin-bottom: 8px !important; }
    .case-study-main .fs-5, .case-study-main .lead { font-size: 12px !important; line-height: 1.5; text-align: left !important; }
    
    /* FAQ Mobile Adjustments */
    .custom-faq-accordion .accordion-button { font-size: 14px !important; padding: 10px 0 !important; }
    .custom-faq-accordion .accordion-body p { font-size: 12px !important; line-height: 1.4 !important; padding-top: 4px !important; text-align: left !important; }
    .accordion-item { padding: 4px 0 !important; }

    /* Inner Page Paragraphs & Fonts */
    .inner-hero .lead, .content-text p, .legal-content p, .legal-content li, .case-study-main .lead, .blog-content-rich .lead { 
        font-size: 13px !important; 
        line-height: 1.5 !important; 
        margin-bottom: 12px !important;
        text-align: left !important;
    }
    .content-section p, .blog-text { font-size: 13px !important; line-height: 1.5 !important; text-align: left !important; }
    .blog-content-rich h2 { font-size: 18px !important; margin-bottom: 10px !important; }
    
    /* Blog specific buttons and text */
    .blog-list-card .p-4 { padding: 20px 15px !important; }
    .blog-list-card h3 { font-size: 18px !important; margin-bottom: 10px !important; }
    .blog-list-card p.fs-5 { font-size: 13px !important; margin-bottom: 20px !important; line-height: 1.5 !important; }
    .blog-list-card .d-flex.justify-content-between { flex-direction: column; gap: 15px; align-items: flex-start !important; }
    .blog-list-card .btn { width: 130px !important; padding: 10px !important; font-size: 13px !important; text-align: center; order: 2;display: block; }
    .blog-list-card .text-muted.small { font-size: 11px !important; width: 100%; justify-content: flex-start; order: 1; }

    .feature-card { display: flex !important; flex-direction: column !important; height: 100% !important; }
    .feature-card h3 { font-size: 16px !important; margin-bottom: 8px !important; }
    .feature-card p { font-size: 12px !important; margin-bottom: 15px !important; line-height: 1.4 !important; }
    .feature-card a { font-size: 11px !important; padding: 6px 12px !important; margin-top: auto !important; align-self: flex-start !important; }

    /* Key Result Box Fix */
    #outcomes .bg-dark, .case-study-main .bg-dark { padding: 20px 15px !important; border-radius: 15px !important; }
    #outcomes .bg-dark p, .case-study-main .bg-dark p { font-size: 12px !important; line-height: 1.5 !important; }
    #outcomes .bg-dark h4, .case-study-main .bg-dark h4 { font-size: 15px !important; }

    /* Global spacing reductions */
    .mb-5 { margin-bottom: 0.5rem !important; }
    .py-4 { padding-top: 0.4rem !important; padding-bottom: 0.4rem !important; }
    .mt-5 { margin-top: 0.5rem !important; }
    .p-5 { padding: 0.75rem !important; }

    /* Buttons spacing */
    .mt-4 { margin-top: 0.4rem !important; }

    /* Card Refinements for Mobile */
    .feature-card { padding: 25px 15px !important; border-radius: 20px; }
    .feature-card h3 { font-size: 18px !important; }
    .feature-card p { font-size: 13px; line-height: 1.5; }
    .card-icon { width: 50px; height: 50px; font-size: 20px; margin-bottom: 15px; }
    
    .product-card { border-radius: 20px !important; }
    .product-card h3 { font-size: 17px !important; }
    .product-card p { font-size: 12px; }
    
    .minimalist-feature-card { padding: 10px 0; }
    .minimalist-feature-card h3 { font-size: 17px !important; margin-bottom: 5px !important; }
    .minimalist-feature-card p { font-size: 12px; line-height: 1.4; }
    .feature-icon-wrapper { width: 40px; height: 40px; font-size: 18px; margin-bottom: 10px !important; }

    /* Testimonial & Case Slide Mobile Fixes */
    .testimonial-card-v2 { padding: 25px 15px !important; border-radius: 20px; }
    .testimonial-quote { font-size: 14px !important; margin-bottom: 20px; }
    .extra-small { font-size: 10px !important; }
    
    /* Legal Pages & Generic Content */
    .legal-content h1, .inner-hero h1 { font-size: 24px !important; margin-bottom: 15px; }
    .legal-content h2, .content-section h2, .section h2 { font-size: 20px !important; margin-top: 20px; margin-bottom: 12px; }
    .legal-content p, .legal-content li, .content-text p { font-size: 14px !important; line-height: 1.5; }
    
    /* Material Cards Mobile Refinement */
    .material-card-v2 { padding: 25px 15px !important; border-radius: 15px; }
    .material-avatar-svg { width: 50px; height: 50px; font-size: 22px; }
    .material-icon-box-v2 { width: 44px; height: 44px; font-size: 20px; }
    .material-icon-circle-v2 { width: 60px; height: 60px; font-size: 26px; }
    .material-pill-v2 { padding: 4px 12px; font-size: 10px; }
    
    /* Job Cards */
    .job-card { padding: 25px 15px !important; border-radius: 20px; }
    .job-card h3 { font-size: 18px !important; }
    
    /* Global Gaping Adjustments */
    .row { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
    .container { padding-left: 15px; padding-right: 15px; }

    /* Case Study Detail Fixes */
    .content-section h2 { font-size: 20px !important; }
    .content-section p { font-size: 14px !important; }
    .content-section .row.g-4 { --bs-gutter-y: 0.75rem; }
    .p-4 { padding: 1rem !important; }
    
    /* Impact Cards */
    .impact-card { padding: 15px 10px !important; }
    .impact-card strong { font-size: 14px !important; }
    
    /* Visual Section Cards */
    .visual-section-card { border-radius: 15px !important; }
    .visual-section-card .visual-thumb { height: 160px !important; }
    .visual-section-card h3 { font-size: 16px !important; }
    .visual-section-card p { font-size: 12px; }

    /* Query Form Specific Mobile Fix */
    .query-info .step-num-circle { width: 32px; height: 32px; font-size: 14px; }
    .query-info .d-flex.gap-4 { gap: 0.75rem !important; margin-bottom: 1rem !important; }
}

@media (max-width: 575.98px) {
    .section-head h2 { font-size: 20px !important; }
    .hero h1 { font-size: 24px !important; }
    .inner-hero h1 { font-size: 22px !important; }
}
    box-shadow: none !important;
    border-left: 1px solid var(--line);
}
.icon-circle-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}
.mobile-social-icon {
    width: 32px;
    height: 32px;
    background: var(--soft);
    color: var(--ink);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.mobile-social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.letter-spacing-1 { letter-spacing: 0.1em; }

/* Floating Actions */
.floating-socials { position: fixed; left: 30px; top: 50%; transform: translateY(-50%); z-index: 1000; display: flex; flex-direction: column; gap: 20px; }
.floating-socials a { 
    width: 54px; 
    height: 54px; 
    background: #fff; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    font-size: 22px; 
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-socials a:hover { 
    background: var(--logo-gradient); 
    color: #fff; 
    transform: scale(1.2) rotate(8deg); 
}

/* Blockquote Styles */
blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Blog Content Links */
.blog-text a, .rich-content a {
    color: var(--primary);
    text-decoration: underline !important;
    transition: all 0.2s ease;
}

.blog-text a:hover, .rich-content a:hover {
    color: var(--accent);
}

.bottom-right-actions { position: fixed; right: 30px; bottom: 30px; z-index: 1000; display: flex; flex-direction: column; gap: 20px; }
.whatsapp-btn, .call-back-btn { 
    width: 64px; 
    height: 64px; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    font-size: 30px; 
    box-shadow: var(--shadow-xl); 
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.whatsapp-btn:hover, .call-back-btn:hover { transform: scale(1.2) translateY(-5px); }

@media (max-width: 1199px) {
    .query-panel { grid-template-columns: 1fr; gap: 60px; padding: 60px; }
}

@media (max-width: 991px) {
    .section { padding: 80px 0; }
    .hero { padding: 60px 0 80px; text-align: center; }
    .hero p { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .tech-orbit { min-height: 400px; margin-top: 60px; }
    
    .stats-row { flex-wrap: wrap; gap: 30px; }
    .stats-row div { flex: 0 0 calc(50% - 15px); }
    .stats-row strong { font-size: 40px; }
    
    .query-panel { padding: 60px 40px; }
}

@media (max-width: 767px) {
    .query-panel { padding: 40px 24px; border-radius: 24px; }
    .query-panel h2 { font-size: 32px; }
    .floating-socials { display: none; }
    
    .case-slide { padding: 40px 20px; border-radius: 24px; }
    .case-slide h3 { font-size: 28px; }
    .carousel-control-prev, .carousel-control-next { width: 44px; height: 44px; }
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
    
    .stats-row div { flex: 0 0 100%; }
    
    .mini-grid { grid-template-columns: 1fr 1fr; }
    .section-head h2 { font-size: 32px; }
}

@media (max-width: 480px) {
    .mini-grid { grid-template-columns: 1fr; }
}
