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

:root {
    --color-bg-deep:        #060B1E;
    --color-bg-card:        rgba(15, 21, 64, 0.45);
    --color-bg-card-solid:  #0F1540;
    --color-bg-surface:     rgba(20, 27, 77, 0.35);
    --color-accent-primary: #3A5BFF;
    --color-accent-light:   #1A8FFF;
    --color-accent-glow:    rgba(58, 91, 255, 0.15);
    --color-text-primary:   #FFFFFF;
    --color-text-secondary: #E2E8F0;
    --color-text-muted:     #94A3B8;
    --color-border:         rgba(255, 255, 255, 0.08);
    --font-heading:         'Inter', sans-serif;
    --font-body:            'Inter', sans-serif;
    --font-mono:            'JetBrains Mono', monospace;
    --border-radius-card:   16px;
    --border-radius-btn:    8px;
    --transition-base:      0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Liquid Glass tokens */
    --glass-blur:           18px;
    --glass-border:         1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow:         0 8px 32px rgba(0, 0, 0, 0.35);
    --glass-highlight:      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --glass-shine:          linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);

    /* Bootstrap 5 compatibility variables for dark mode */
    --bs-body-color:        var(--color-text-secondary);
    --bs-body-bg:           var(--color-bg-deep);
    --bs-secondary-color:   var(--color-text-muted) !important;
    --bs-secondary-bg:      var(--color-bg-card-solid);
    --bs-tertiary-color:    var(--color-text-muted) !important;
    --bs-tertiary-bg:       var(--color-bg-card-solid);
    --bs-primary:           var(--color-accent-primary);
    --bs-link-color:        var(--color-accent-light);
    --bs-link-hover-color:  var(--color-text-primary);
    --bs-border-color:      var(--color-border);
    --bs-card-bg:           var(--color-bg-card-solid);
    --bs-card-border-color: var(--color-border);
}

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

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle animated background mesh for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 600px 600px at 20% 20%, rgba(58, 91, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 80%, rgba(26, 143, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 60% 30%, rgba(58, 91, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; }

a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-text-primary);
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(58, 91, 255, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-primary);
}

/* ======================================================
   GLASS UTILITY — Reusable glass surface class
   ====================================================== */
.glass,
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--glass-shine);
    pointer-events: none;
    z-index: 1;
}

/* Layout Utilities */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Dynamic Grid Systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.75rem; }
}

@media (max-width: 576px) {
    .grid-4 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.25rem; }
}

/* ======================================================
   PREMIUM BUTTONS — Glass-infused
   ====================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, #2845E0 100%);
    color: var(--color-text-primary);
    box-shadow: 0 4px 20px rgba(58, 91, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(58, 91, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #4D6FFF 0%, var(--color-accent-primary) 100%);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(58, 91, 255, 0.12);
    border-color: rgba(58, 91, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(58, 91, 255, 0.15);
    color: #fff;
}

/* ======================================================
   NAVIGATION — Frosted glass navbar
   ====================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: rgba(6, 11, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-nav.scrolled {
    background: rgba(6, 11, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.nav-logo:hover {
    color: var(--color-text-primary);
}

.nav-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-light));
    transition: var(--transition-base);
    border-radius: 1px;
}

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

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

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Background grid pattern */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(58, 91, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(58, 91, 255, 0.03) 1px, transparent 1px);
    z-index: 1;
}

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

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #C8D6FF 60%, #8BA4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .sub-headline {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SVG Globe styles */
.globe-svg {
    width: 100%;
    max-width: 480px;
    animation: rotate 60s linear infinite;
    filter: drop-shadow(0 0 40px rgba(58, 91, 255, 0.2));
}

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

/* Particle system simulation */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--color-accent-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp 8s ease-in-out infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ======================================================
   ASYMMETRIC INTRO / STATS — Glass cards
   ====================================================== */
.asymmetric-intro {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
    align-items: center;
}

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

.stat-item {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 30px;
    border-radius: var(--border-radius-card);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--glass-highlight);
    border-color: rgba(58, 91, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .asymmetric-intro {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   SERVICE CARDS — Glassmorphism
   ====================================================== */
.services-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card-lg {
    grid-column: span 3;
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 40px;
    border-radius: var(--border-radius-card);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    position: relative;
    transition: var(--transition-base);
    overflow: hidden;
}

.service-card-lg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.service-card-sm {
    grid-column: span 2;
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 30px;
    border-radius: var(--border-radius-card);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    position: relative;
    transition: var(--transition-base);
    overflow: hidden;
}

.service-card-sm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.service-card-lg:hover,
.service-card-sm:hover,
.team-card:hover,
.blog-card:hover,
.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(58, 91, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--color-accent-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.features-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

.feature-pill {
    background: rgba(20, 27, 77, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-text-secondary);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.feature-pill:hover {
    background: linear-gradient(135deg, var(--color-accent-primary), #2845E0);
    color: var(--color-text-primary);
    border-color: var(--color-accent-primary);
    box-shadow: 0 4px 16px rgba(58, 91, 255, 0.3);
}

@media (max-width: 992px) {
    .service-card-lg { grid-column: span 6; }
    .service-card-sm { grid-column: span 3; }
}

@media (max-width: 576px) {
    .service-card-sm { grid-column: span 6; }
}

/* ======================================================
   WHY CHOOSE US — Vertical line layout
   ====================================================== */
.why-container {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 60px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 2px solid rgba(58, 91, 255, 0.2);
    padding-left: 40px;
}

.why-feature-row {
    position: relative;
}

.why-feature-row::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent-primary);
    box-shadow: 0 0 12px var(--color-accent-primary), 0 0 24px rgba(58, 91, 255, 0.3);
}

.why-feature-row h3 {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .why-container { grid-template-columns: 1fr; }
    .why-features { padding-left: 20px; }
    .why-feature-row::before { left: -26px; }
}

/* ======================================================
   TIMELINE — Glass steps
   ====================================================== */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    padding-bottom: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(58,91,255,0.1), rgba(58,91,255,0.3), rgba(58,91,255,0.1));
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.timeline-step.active .step-number {
    border-color: var(--color-accent-primary);
    background: linear-gradient(135deg, var(--color-accent-primary), #2845E0);
    box-shadow: 0 0 20px rgba(58, 91, 255, 0.5);
}

@media (max-width: 768px) {
    .timeline { flex-direction: column; gap: 40px; }
    .timeline::before { display: none; }
    .timeline-step { text-align: left; display: flex; gap: 20px; padding: 0; }
    .step-number { margin-bottom: 0; flex-shrink: 0; }
}

/* ======================================================
   PORTFOLIO — Masonry Grid with glass overlays
   ====================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 30px;
}

.portfolio-card {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: var(--transition-base);
}

.portfolio-card:hover {
    border-color: rgba(58, 91, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 11, 30, 0.95) 20%, rgba(6, 11, 30, 0.3) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.portfolio-tag {
    background: rgba(58, 91, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--color-accent-light);
    border: 1px solid rgba(58, 91, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

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

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

/* ======================================================
   MARQUEE — Tech logos ticker
   ====================================================== */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 80px;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.marquee-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ======================================================
   TECH TABS — Glass pills
   ====================================================== */
.tech-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-tab {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-base);
}

.tech-tab.active,
.tech-tab:hover {
    background: linear-gradient(135deg, var(--color-accent-primary), #2845E0);
    color: var(--color-text-primary);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(58, 91, 255, 0.3);
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tech-logo-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    border-radius: var(--border-radius-card);
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tech-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
}

.tech-logo-card:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(26, 143, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .tech-logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 576px) {
    .tech-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   TESTIMONIALS — Glass carousel cards
   ====================================================== */
.testimonial-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    border-radius: var(--border-radius-card);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
}

.testimonial-rating {
    color: #FFB800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-light));
    object-fit: cover;
}

/* ======================================================
   INDUSTRIES — Glass grid
   ====================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.industry-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    border-radius: var(--border-radius-card);
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
}

.industry-card i {
    font-size: 2.25rem;
    color: var(--color-accent-light);
    margin-bottom: 12px;
}

.industry-card:hover {
    background: linear-gradient(135deg, rgba(58, 91, 255, 0.5), rgba(40, 69, 224, 0.4));
    border-color: rgba(58, 91, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(58, 91, 255, 0.2);
}

.industry-card:hover i,
.industry-card:hover span {
    color: var(--color-text-primary);
}

@media (max-width: 992px) {
    .industry-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 576px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   CTA BANNER — Glass
   ====================================================== */
.cta-banner {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 91, 255, 0.12), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: ctaPulse 6s ease-in-out infinite alternate;
}

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

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* ======================================================
   CONTACT STRIP — Glass
   ====================================================== */
.contact-strip {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.contact-strip-item i {
    font-size: 1.75rem;
    color: var(--color-accent-light);
    margin-bottom: 10px;
}

/* ======================================================
   FOOTER — Glass
   ====================================================== */
.footer {
    background: rgba(6, 10, 34, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2.5fr 2.5fr 3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--color-text-secondary);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ======================================================
   FORMS — Glass surfaces
   ====================================================== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-control {
    width: 100%;
    background: rgba(20, 27, 77, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-btn);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 16px rgba(58, 91, 255, 0.15);
    background: rgba(20, 27, 77, 0.6);
}

.form-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    border-radius: var(--border-radius-card);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
}

/* ======================================================
   ENTRANCE ANIMATIONS
   ====================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================
   BREADCRUMBS — Page header (clears fixed navbar)
   ====================================================== */
.breadcrumbs {
    padding-top: 90px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    background: rgba(6, 11, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
}

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

.breadcrumbs a:hover {
    color: var(--color-accent-light);
}

/* ======================================================
   ADMIN SIDEBAR — Solid (not glass, for stability)
   ====================================================== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background-color: var(--color-bg-card-solid);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    flex-shrink: 0;
}

.admin-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 40px;
}

.admin-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.admin-nav {
    list-style: none;
}

.admin-nav-item {
    margin-bottom: 8px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text-secondary);
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    transition: var(--transition-base);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(58, 91, 255, 0.1);
    color: var(--color-text-primary);
}

.admin-nav-link.active i {
    color: var(--color-accent-light);
}

.admin-main {
    flex-grow: 1;
    padding: 40px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
}

/* Data Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table th {
    background-color: var(--color-bg-card-solid);
    color: var(--color-text-primary);
    font-weight: 600;
}

.admin-table tr:hover {
    background-color: rgba(58, 91, 255, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge-new { background-color: rgba(58, 91, 255, 0.2); color: var(--color-accent-light); }
.status-badge-completed { background-color: rgba(0, 200, 100, 0.2); color: #00E575; }
.status-badge-pending { background-color: rgba(255, 184, 0, 0.2); color: #FFD23F; }

/* Admin Widgets — Glass */
.admin-widget {
    background: var(--color-bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-highlight);
    border-radius: var(--border-radius-card);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.admin-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    border-radius: inherit;
}

.admin-widget-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(58, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent-light);
    position: relative;
    z-index: 2;
}

/* TinyMCE wrapper overrides */
.tox-tinymce {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--border-radius-btn) !important;
}

/* ======================================================
   BOOTSTRAP OVERRIDES — Dark glass mode
   ====================================================== */
.card {
    background-color: var(--color-bg-card-solid) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--color-text-secondary) !important;
}

.modal-content {
    background-color: var(--color-bg-card-solid) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--color-text-secondary) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-header, .modal-footer {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

.dropdown-menu {
    background-color: var(--color-bg-card-solid) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.dropdown-item {
    color: var(--color-text-secondary) !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(58, 91, 255, 0.1) !important;
    color: var(--color-text-primary) !important;
}

.accordion-item {
    background-color: var(--color-bg-card-solid) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

.accordion-button {
    background-color: var(--color-bg-card-solid) !important;
    color: var(--color-text-primary) !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(58, 91, 255, 0.08) !important;
    color: var(--color-accent-light) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(1) !important;
}

.alert {
    background-color: rgba(20, 27, 77, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: var(--color-text-primary) !important;
}

.list-group-item {
    background-color: var(--color-bg-card-solid) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    color: var(--color-text-secondary) !important;
}

/* Redefine all table, row, and cell background & text colors */
.table,
.table th,
.table td,
.table tr {
    background-color: var(--color-bg-card-solid) !important;
    color: var(--color-text-secondary) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Row highlight on hover */
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
    background-color: rgba(58, 91, 255, 0.06) !important;
    color: var(--color-text-primary) !important;
}

.table-striped tbody tr:nth-of-type(odd) td,
.table-striped tbody tr:nth-of-type(odd) th {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.pagination .page-link {
    background-color: var(--color-bg-card-solid) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    color: var(--color-text-secondary) !important;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--color-accent-primary), #2845E0) !important;
    border-color: transparent !important;
    color: var(--color-text-primary) !important;
}

.pagination .page-link:hover {
    background-color: rgba(58, 91, 255, 0.1) !important;
    color: var(--color-text-primary) !important;
}

.form-control:disabled, .form-control[readonly] {
    background-color: var(--color-bg-deep) !important;
    color: var(--color-text-muted) !important;
}

/* ======================================================
   BADGE UTILITY FOR CARDS (used in pricing, etc)
   ====================================================== */
.badge-glass {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(58, 91, 255, 0.15);
    color: var(--color-accent-light);
    border: 1px solid rgba(58, 91, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Selection color */
::selection {
    background: rgba(58, 91, 255, 0.3);
    color: #fff;
}

/* ======================================================
   LIQUID GLASS ANIMATIONS & EFFECTS
   ====================================================== */

/* Liquid Glass Floating Background Blobs */
.liquid-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    animation: floatBlob 28s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-primary) 0%, transparent 80%);
    top: -15%;
    left: -10%;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 80%);
    bottom: -20%;
    right: -10%;
    animation-duration: 35s;
    animation-delay: -7s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8A2BE2 0%, transparent 80%);
    top: 35%;
    left: 45%;
    animation-duration: 24s;
    animation-delay: -12s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(60px, -90px) scale(1.15) rotate(120deg);
    }
    66% {
        transform: translate(-40px, 50px) scale(0.9) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* Cursor-Tracking Magnetic Glow Card Effect */
.glow-card {
    position: relative;
    background: var(--color-bg-card);
    border: var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(58, 91, 255, 0.12),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

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

.glow-card:hover {
    border-color: rgba(58, 91, 255, 0.28) !important;
    box-shadow: 0 12px 36px rgba(58, 91, 255, 0.16), var(--glass-highlight);
    transform: translateY(-4px);
}

/* Premium 3D Lift Transitions */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.4s, border-color 0.3s;
}

.hover-lift:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    border-color: rgba(58, 91, 255, 0.25) !important;
}

/* Interactive elements rotating/glowing icons */
.icon-glow-container {
    position: relative;
    cursor: pointer;
}

.icon-glow-container i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25), color 0.3s, filter 0.3s;
}

.icon-glow-container:hover i {
    transform: scale(1.18) rotate(5deg);
    color: var(--color-accent-light) !important;
    filter: drop-shadow(0 0 8px rgba(26, 143, 255, 0.5));
}

/* Staggered entry animation delays */
.stagger-1 { animation-delay: 0.08s; }
.stagger-2 { animation-delay: 0.16s; }
.stagger-3 { animation-delay: 0.24s; }
.stagger-4 { animation-delay: 0.32s; }
.stagger-5 { animation-delay: 0.4s; }
.stagger-6 { animation-delay: 0.48s; }
.stagger-7 { animation-delay: 0.56s; }
.stagger-8 { animation-delay: 0.64s; }

/* ======================================================
   SCROLL PROGRESS BAR
   ====================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-light), #8A2BE2);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 12px rgba(58, 91, 255, 0.6);
}

/* ======================================================
   GRADIENT TEXT SHIMMER (Hero Headlines)
   ====================================================== */
.text-gradient-shimmer {
    background: linear-gradient(
        90deg,
        var(--color-text-primary) 0%,
        var(--color-accent-light) 25%,
        var(--color-accent-primary) 50%,
        var(--color-text-primary) 75%,
        var(--color-accent-light) 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGradient 6s ease-in-out infinite;
}

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

/* ======================================================
   MAGNETIC BUTTON EFFECT
   ====================================================== */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--btn-x, 50%) var(--btn-y, 50%),
        rgba(255, 255, 255, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-magnetic:hover::before {
    opacity: 1;
}

.btn-magnetic:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(58, 91, 255, 0.35);
}

/* Ripple click effect for all buttons */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ======================================================
   PULSE GLOW FOR CTA BANNERS
   ====================================================== */
.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(58, 91, 255, 0.08),
                    0 0 60px rgba(58, 91, 255, 0.04);
    }
    50% {
        box-shadow: 0 0 30px rgba(58, 91, 255, 0.18),
                    0 0 80px rgba(58, 91, 255, 0.1),
                    0 0 120px rgba(26, 143, 255, 0.06);
    }
}

/* ======================================================
   ANIMATED NAV LINK UNDERLINES
   ====================================================== */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-light));
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ======================================================
   PARALLAX TEXT REVEAL (Scroll-driven entrance)
   ====================================================== */
.reveal-text {
    opacity: 0;
    transform: translateY(40px) rotateX(8deg);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom center;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ======================================================
   TIMELINE STEP ANIMATED CONNECTIONS
   ====================================================== */
.timeline-step {
    position: relative;
}

.timeline-step .step-number {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.2);
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-light)) !important;
    box-shadow: 0 0 20px rgba(58, 91, 255, 0.4), 0 0 40px rgba(58, 91, 255, 0.15);
}

.timeline-step:hover h4 {
    color: var(--color-accent-light) !important;
    transition: color 0.3s ease;
}

/* ======================================================
   FLOATING BADGE BOUNCE (used on pricing cards)
   ====================================================== */
.badge-float {
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ======================================================
   GLASSMORPHISM CARD ENHANCED HOVER BORDERS
   ====================================================== */
.service-card-lg:hover,
.service-card-sm:hover {
    border-color: rgba(58, 91, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(58, 91, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.testimonial-card:hover {
    border-color: rgba(26, 143, 255, 0.25) !important;
    box-shadow: 0 12px 40px rgba(26, 143, 255, 0.1);
}

.industry-card:hover i {
    transform: scale(1.2) translateY(-4px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(58, 91, 255, 0.5));
}

.industry-card i {
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

/* ======================================================
   HERO SVG CONTINUOUS ROTATION
   ====================================================== */
.globe-svg {
    animation: rotateSphere 40s linear infinite;
    filter: drop-shadow(0 0 20px rgba(58, 91, 255, 0.2));
    transition: filter 0.3s ease;
}

.globe-svg:hover {
    filter: drop-shadow(0 0 35px rgba(58, 91, 255, 0.4));
    animation-duration: 20s;
}

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

/* ======================================================
   COUNTER NUMBER GLOW ON VIEW
   ====================================================== */
.counter-number.counted {
    text-shadow: 0 0 20px rgba(58, 91, 255, 0.5), 0 0 40px rgba(58, 91, 255, 0.2);
    transition: text-shadow 0.6s ease;
}

/* ======================================================
   FOOTER SOCIAL LINK HOVER ANIMATIONS
   ====================================================== */
.social-links a {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                color 0.3s ease,
                filter 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.15);
    color: var(--color-accent-light) !important;
    filter: drop-shadow(0 4px 12px rgba(26, 143, 255, 0.4));
}

/* ======================================================
   FOOTER LINK SLIDE-IN UNDERLINE
   ====================================================== */
.footer-links a {
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    padding-left: 16px;
    color: var(--color-accent-light) !important;
}

.footer-links a:hover::before {
    width: 10px;
    left: 0;
}

/* ======================================================
   WHY-FEATURE ROW HOVER LINE
   ====================================================== */
.why-feature-row {
    transition: transform 0.3s ease, padding-left 0.3s ease;
    border-left: 3px solid transparent;
}

.why-feature-row:hover {
    transform: translateX(8px);
    padding-left: 8px;
    border-left-color: var(--color-accent-primary);
}

.why-feature-row:hover h3 {
    color: var(--color-accent-light) !important;
    transition: color 0.3s ease;
}

/* ======================================================
   CONTACT STRIP ITEM HOVER
   ====================================================== */
.contact-strip-item {
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-strip-item:hover {
    transform: translateY(-4px);
    background: rgba(58, 91, 255, 0.04);
}

.contact-strip-item:hover i {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ======================================================
   SMOOTH PAGE LOAD ANIMATION
   ====================================================== */
.content-wrapper {
    animation: pageSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ======================================================
   MARQUEE ITEM HOVER GLOW
   ====================================================== */
.marquee-item {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.marquee-item:hover {
    color: var(--color-accent-light) !important;
    text-shadow: 0 0 15px rgba(26, 143, 255, 0.5);
}

/* ======================================================
   STAT ITEM NUMBER SCALE ON HOVER
   ====================================================== */
.stat-item:hover .stat-number {
    transform: scale(1.08);
    color: var(--color-accent-light) !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-item .stat-number {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ======================================================
   TECH TAB ACTIVE INDICATOR ANIMATION
   ====================================================== */
.tech-tab {
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
}

.tech-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.tech-tab.active::after,
.tech-tab:hover::after {
    width: 80%;
    left: 10%;
}

/* ======================================================
   PORTFOLIO TAG PILL HOVER
   ====================================================== */
.portfolio-tag {
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.portfolio-tag:hover {
    background: rgba(58, 91, 255, 0.3) !important;
    color: #fff !important;
    transform: scale(1.08);
}

/* ======================================================
   BREADCRUMB SEPARATOR ANIMATION
   ====================================================== */
.breadcrumbs a {
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-accent-light) !important;
}

/* ======================================================
   SMOOTH SCROLL BEHAVIOR
   ====================================================== */
html {
    scroll-behavior: smooth;
}

/* ======================================================
   REDUCED MOTION ACCESSIBILITY
   ====================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-progress { display: none; }
    .liquid-blob { display: none; }
    .globe-svg { animation: none; }
    .pulse-glow { animation: none; }
    .content-wrapper { animation: none; opacity: 1; }
}

