:root {
    /* Existing theme (dark) */
    --primary-color: #020B2D;
    --secondary-color: #0A1551;
    --accent-color: #4C7BFF;
    --accent-glow: #4C7BFF40;
    --text-color: #ffffff;
    --text-secondary: #8EA6CC; /* themed blue-gray replacing old #B4B9C8 */
    --gradient-1: #0B1340;
    --gradient-2: #1A237E;
    --gradient-3: #0D47A1;
    --bg-color: #1e3c72;
    --bg-secondary: #2a5298;

    /* New brand palette (recommendation) */
    --brand-teal: #0f766e;      /* Primary */
    --brand-cyan: #06b6d4;      /* Accent / CTA */
    --brand-indigo: #312e81;    /* Secondary headings */
    --brand-neutral: #f8fafc;   /* Neutral bg */
    --brand-surface: #ffffff;   /* Surface */
    --brand-error: #ef4444;     /* Error */
}

/* Toast notification */
.toast {
  position: fixed;
  right: 20px;
  bottom: 24px;
  max-width: 90vw;
  z-index: 3000;
  background: #0f172a; /* dark base */
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast.success { border-color: rgba(6,182,212,0.35); box-shadow: 0 12px 30px rgba(6,182,212,0.18); }
.toast.error { border-color: rgba(239,68,68,0.45); box-shadow: 0 12px 30px rgba(239,68,68,0.18); }

@media (max-width: 480px) {
  .toast { left: 12px; right: 12px; }
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Global focus styles (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand-cyan) 60%, white);
  outline-offset: 2px;
}

/* Gradient Background Animation */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        var(--gradient-1),
        var(--gradient-2),
        var(--gradient-3),
        var(--gradient-2)
    );
    animation: gradientBG 15s ease infinite;
    opacity: 0.5;
}

@keyframes gradientBG {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Particles Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Allow parallax transforms on hero layers */
.hero-visual, .floating-elements, .network-visualization { will-change: transform; }

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* Sticky header shrink + stronger blur on scroll */
.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Animated gradient wave under navbar */
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, #0A1551, #1EC8FF, #FFFFFF, #1EC8FF, #0A1551);
    background-size: 300% 100%;
    animation: hueShift 8s linear infinite;
    opacity: 0.7;
}

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

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

/* Keep navbar clickable above all visual layers */
.navbar { position: sticky; top: 0; z-index: 2000; }
.gradient-bg, .ps-hero .particles-bg { pointer-events: none; }

/* Tablet & Desktop: hide hamburger, show inline nav */
@media (min-width: 769px) {
  .mobile-menu { display: none; }
  .nav-links { display: flex; }
}

/* Always show the 3-line (hamburger) button on the right */
.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid rgba(15,23,42,0.18);
    border-radius: 10px;
    cursor: pointer;
    margin-left: auto; /* push to right */
    padding: 8px;
    position: relative;
    z-index: 1100; /* above nav links */
}
.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a; /* slate-900 on white header */
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Keep nice X animation */
.mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu.active span:nth-child(2) { opacity: 0; }
.mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link { display: inline-flex; align-items: center; position: relative; }
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 0 6px rgba(30,200,255,0.25)); }

@media (max-width: 768px) {
  .logo-img { height: 34px; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Subtle glow highlight behind the logo */
.logo-link::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(30,200,255,0.35), rgba(76,123,255,0.22) 60%, rgba(10,21,81,0) 70%);
    filter: blur(6px);
    opacity: 0.7;
    z-index: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

/* Keep the image above the glow and add gentle hover emphasis */
.logo-img { position: relative; z-index: 1; transition: transform 0.2s ease, filter 0.25s ease; }
.logo-link:hover .logo-img { transform: translateY(-0.5px) scale(1.03); filter: drop-shadow(0 0 10px rgba(30,200,255,0.35)); }
.logo-link:hover::before { opacity: 1; transform: translateY(-50%) scale(1.04); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #0f172a; /* dark text for white header */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-teal);
}

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

/* Primary and Ghost buttons (Tailwind-friendly styles) */
.btn-primary {
  background: linear-gradient(90deg, var(--brand-cyan), #0fb6c8);
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  box-shadow: 0 6px 18px rgba(6,182,212,0.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(6,182,212,0.22); }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--brand-cyan);
  border: 1.5px solid var(--brand-cyan);
  border-radius: 8px;
  padding: 10px 18px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(6,182,212,0.18); background: rgba(6,182,212,0.08); }

/* Contact link hover glow */
.contact-link { color: var(--text-color); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.contact-link:hover { color: #1EC8FF; border-bottom-color: #1EC8FF; text-shadow: 0 0 8px rgba(30,200,255,0.4); }

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Hero title per guidelines */
.hero-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  line-height: 1.15;
  color: #fff; /* readable on dark background */
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}

.hero-description { font-size: 1.1rem; line-height: 1.6; }

/* CTA glow button */
.btn-cta-glow {
  background: linear-gradient(180deg, #4C7BFF 0%, #3D6CFF 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 8px 18px rgba(18, 32, 88, 0.35);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
}
.btn-cta-glow:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 12px 26px rgba(18, 32, 88, 0.45);
  background: linear-gradient(180deg, #5D89FF 0%, #496FFF 100%);
}
.btn-cta-glow:active { transform: translateY(0); }
.btn-cta-glow:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(76,123,255,0.35); }
.btn-cta-glow .btn-icon { transition: transform .2s ease; display: inline-block; }
.btn-cta-glow:hover .btn-icon { transform: translateX(4px); }
@media (max-width: 768px) { .btn-cta-glow { padding: 0.9rem 1.5rem; font-size: 1rem; } }
@media (prefers-reduced-motion: reduce) { .btn-cta-glow { transition: none; } .btn-cta-glow .btn-icon { transition: none; } }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-text {
    max-width: 600px;
}

.subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glowing-text {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Ensure hero call-to-actions layout properly */
.hero-actions,
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    box-shadow: 0 0 20px var(--accent-glow);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.secondary-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    animation: float 6s infinite ease-in-out;
}

.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { top: 40%; right: -10%; animation-delay: 2s; }
.card-3 { bottom: 20%; left: 20%; animation-delay: 4s; }

.card-icon {
    font-size: 1.5rem;
}

.team-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.team-image {
    width: 100%;
    display: block;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.team-image-wrapper:hover .team-image {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(76, 123, 255, 0.2),
        rgba(10, 21, 81, 0.2)
    );
}

/* Stats Bar */
.stats-bar {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
}

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

/* Partner Section */
.partner-section {
    margin-top: 4rem;
    text-align: center;
}

.partner-label {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-logos {
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(76, 123, 255, 0));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(76, 123, 255, 0.3));
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    /* Show floating overlay cards on mobile with safe layout */
    .hero-visual { position: static !important; z-index: 1; margin-top: 1rem; }
    .hero-content { position: relative; z-index: 2; }
    .floating-elements { 
        position: relative; 
        width: 100%; 
        height: 160px; 
        pointer-events: none; 
        transform: scale(0.95);
    }
    /* Reposition floating tech cards for mobile to prevent covering CTA */
    .tech-card { box-shadow: 0 8px 18px rgba(0,0,0,0.25); }
    .card-1 { top: 8px; left: auto; right: 18%; }
    .card-2 { top: 56px; right: 2%; left: auto; }
    .card-3 { bottom: 6px; left: auto; right: 35%; }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        z-index: 1500; /* ensure above navbar and content */
    }

    .nav-links.active {
        display: flex;
    }

    /* Fallback: if JS toggles only the button, still show the menu */
    .mobile-menu.active + #primaryNav {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        color: #0f172a;
        font-size: 18px;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

    .nav-links a:hover {
        background: rgba(6, 182, 212, 0.10);
    }

    .nav-links a.active {
        background: rgba(6, 182, 212, 0.15);
        color: var(--brand-cyan);
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .glowing-text {
        font-size: 2.5rem;
    }

    .hero-actions,
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Publisher Solutions Section */
.publisher-solutions {
    padding: 6rem 0 5rem;
    background: linear-gradient(180deg, #061036 0%, #0A1551 50%, #091548 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Animated background for Publisher Solutions */
.ps-animated-bg {
  position: absolute;
  inset: -10% -10% 0 -10%;
  background:
    radial-gradient(600px 160px at 15% 10%, rgba(10,21,81,0.10), transparent 60%),
    radial-gradient(500px 140px at 85% 20%, rgba(10,21,81,0.08), transparent 60%),
    radial-gradient(700px 180px at 50% 90%, rgba(10,21,81,0.06), transparent 60%);
  filter: blur(30px) saturate(1.05);
  pointer-events: none;
  animation: psDrift 60s linear infinite;
  z-index: 0;
}

.ps-animated-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,21,81,0.12) 0%,
    rgba(10,21,81,0.10) 50%,
    rgba(10,21,81,0.08) 100%
  );
  /* Keep single tone and avoid any light/white cast */
  mix-blend-mode: normal;
  opacity: 0.10;
  background-size: 200% 200%;
  animation: bgPan 80s ease-in-out infinite;
}

@keyframes psDrift {
  0%   { transform: translateY(0) translateX(0) scale(1); }
  50%  { transform: translateY(-10px) translateX(6px) scale(1.02); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}

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

/* Ensure section content sits above the animated background */
.publisher-solutions > *:not(.ps-animated-bg) {
  position: relative;
  z-index: 1;
}

.publisher-solutions .section-title {
    text-align: center;
    color: var(--accent-color); /* remove white, use theme accent */
    font-size: 2.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}

.publisher-solutions .section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: hueShift 8s linear infinite;
    border-radius: 999px;
    opacity: 0.9;
}

.publisher-solutions .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 860px;
    margin: 0.25rem auto 2.25rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.solutions-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}

.solution-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    filter: saturate(1.03);
}

.card-inner {
    position: relative;
    padding: 2rem;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
    background: rgba(10,21,81,0.6); /* fallback behind transparent areas */
    filter: brightness(0.92) contrast(1.05);
}

/* Image wrapper with subtle themed overlay to neutralize bright whites */
.solution-media { position: relative; border-radius: 12px; overflow: hidden; background: rgba(10,21,81,0.6); }
.solution-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,35,126,0.25), rgba(76,123,255,0.18));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Use image as background with animated color overlay, keep <img> for SEO */
.bg-image { position: relative; }
.bg-image::before {
  content: '';
  display: block;
  height: 200px; /* same as previous media height */
  border-radius: 12px;
  margin-bottom: 1.5rem;
  background-image: 
    linear-gradient(180deg, rgba(1,4,18,0.45), rgba(1,4,18,0.35)), /* darken image */
    var(--card-bg),
    linear-gradient(120deg, rgba(30,200,255,0.10), rgba(76,123,255,0.12), rgba(10,21,81,0.10)); /* animated tint */
  background-size: 100% 100%, cover, 200% 200%;
  background-position: center, center, 0% 50%;
  background-repeat: no-repeat;
  filter: brightness(0.92) contrast(1.05);
  animation: cardHueShift 14s ease-in-out infinite;
}

/* animated accent sweep layer */
.bg-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  border-radius: 12px;
  background: radial-gradient(120px 60px at -20% 20%, rgba(76,123,255,0.25), transparent 70%),
              radial-gradient(120px 60px at 120% 80%, rgba(30,200,255,0.18), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: psDrift 18s linear infinite;
}

/* Visually hide the inline image but keep it accessible */
.bg-image .solution-media { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; }

@keyframes cardHueShift {
  0% { background-position: center, 0% 50%; }
  50% { background-position: center, 100% 50%; }
  100% { background-position: center, 0% 50%; }
}

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

.card-content h3 {
    color: var(--accent-color); /* remove white, use theme accent */
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}

.card-content p {
    color: var(--text-secondary);
    text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}

/* Professional themed card backgrounds (reuse instead of inline styles) */
.card-theme-bg {
  background: linear-gradient(135deg, rgba(5,12,42,0.70), rgba(10,21,81,0.55));
  padding: 1.25rem 1.25rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.features-card { grid-column: span 2; }

@media (max-width: 992px) {
  .features-card { grid-column: span 1; }
}

/* Slider dots themed inside Publisher Solutions */
.publisher-solutions .slider-dots { display: flex; gap: 10px; justify-content: center; margin-top: 1.25rem; }
.publisher-solutions .slider-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(76,123,255,0.35); display: inline-block; }
.publisher-solutions .slider-dots .dot.active { background: var(--accent-color); }

/* Feature bullets styling */
.publisher-solutions .feature-bullets { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.publisher-solutions .feature-bullets li { color: var(--text-secondary); margin: 0.4rem 0; }
.publisher-solutions .feature-bullets li strong { color: var(--accent-color); font-weight: 600; }

/* Section actions (CTA) */
.section-actions { 
  display: flex; 
  justify-content: flex-end; 
  margin-top: 1.25rem; 
}

.section-actions .btn-cta-glow { 
  padding: 0.9rem 1.5rem; 
}

@media (max-width: 992px) {
  .solutions-slider { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .solutions-slider { grid-template-columns: 1fr; }
  .section-actions { justify-content: center; position: sticky; top: 64px; z-index: 3; padding: 0.5rem 0; }
  .section-actions .btn-cta-glow { width: auto; }
  /* ensure padding blends under mobile header */
  .publisher-solutions { padding-top: 5rem; background: var(--primary-color); }
}

/* cleaned malformed media block */

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

    .solution-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Removed per-card gradient overrides to ensure consistent brand theme */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.solution-card:nth-child(1) {
    animation-delay: 0.2s;
}

.solution-card:nth-child(2) {
    animation-delay: 0.4s;
}

.solution-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .solutions-slider {
        gap: 20px;
    }
    
    .solution-card {
        width: calc(50% - 15px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .solution-card {
        width: 85%;
        min-width: 260px;
    }
    
    .solutions-slider {
        gap: 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 16px;
    }
}

/* QurekaLite Section */
.qureka-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.qureka-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qureka-logo {
    width: 40px;
    height: 40px;
}

.qureka-header span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4527a0;
}

.qureka-content h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.qureka-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.know-more-btn {
    padding: 12px 30px;
    background-color: white;
    border: 2px solid #4527a0;
    color: #4527a0;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background-color: #4527a0;
    color: white;
}

.qureka-image {
    position: relative;
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.stat {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0;
}

/* Connected TV Section */
.connected-tv-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #1a237e 0%, #4527a0 100%);
    border-radius: 30px;
    padding: 50px;
    color: white;
}

.tv-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.tv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tv-logo {
    width: 40px;
    height: 40px;
}

.tv-content h3 {
    font-size: 1.8rem;
    margin: 0;
}

.tv-content p {
    margin: 20px 0;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    fill: #4CAF50;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #4527a0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .qureka-section,
    .connected-tv-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .connected-tv-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .qureka-content h2 {
        font-size: 1.5rem;
    }

    .stats-overlay {
        position: relative;
        margin-top: 2rem;
    }
}

/* Network Effect Section */
.network-effect {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.network-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.network-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.network-stats h3 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.network-stats h3 span {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.network-stats p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.network-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.network-description .btn-primary {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.network-description .btn-primary:hover {
    background: #5d89ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 123, 255, 0.3);
}

/* Footer alignment */
.main-footer {
  background: rgba(2,11,45,0.02);
}
.footer-brand { text-align: center; }
.footer-brand .footer-logo { display: flex; justify-content: center; }
.footer-brand p { text-align: center; margin-top: 0.5rem; }

@media (max-width: 992px) {
    .network-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .network-stats {
        margin-bottom: 1rem;
    }
}

/* ==============================
   Publisher Solutions (new page)
   ============================== */
/* HERO */
.ps-hero {
  padding: 140px 0 80px;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
}

.ps-hero-inner { 
  display: grid; 
  grid-template-columns: 1.1fr .9fr; 
  gap: 3rem; 
  align-items: center; 
}

.ps-hero-title { 
  font-size: 2.5rem; 
  font-weight: 800; 
  letter-spacing: .2px; 
  margin-bottom: .75rem; 
}
.ps-hero-subtitle { 
  color: var(--text-secondary); 
  font-size: 1.125rem; 
}

.ps-hero-illustration { 
  display: flex; 
  gap: .75rem; 
  justify-content: flex-end; 
}
.ps-pill { 
  display:inline-flex; align-items:center; justify-content:center;
  width: 56px; height: 56px; border-radius: 14px; 
  background: rgba(255,255,255,0.08); 
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  color: var(--accent-color); font-size: 1.2rem; 
}

/* FEATURES */
.ps-features { padding: 40px 0 10px; background: transparent; }
.ps-cards { 
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; 
}
.ps-card { 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 16px; 
  padding: 1.5rem; 
  box-shadow: 0 12px 28px rgba(0,0,0,0.25); 
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ps-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.32); }
.ps-card h3 { color: var(--accent-color); margin: .75rem 0 .5rem; font-size: 1.15rem; }
.ps-card p { color: var(--text-secondary); }
.ps-card-icon { 
  width: 46px; height: 46px; border-radius: 12px; 
  display:flex; align-items:center; justify-content:center; 
  background: rgba(76,123,255,0.12); color: var(--accent-color); 
}

/* Highlight metric card */
.ps-card-highlight { 
  background: linear-gradient(135deg, rgba(10,21,81,0.55), rgba(76,123,255,0.25));
}
.ps-metric { 
  font-size: 3rem; line-height: 1; font-weight: 800; 
  color: var(--accent-color); text-shadow: 0 6px 22px rgba(76,123,255,0.25);
}

/* BENEFITS */
.ps-benefits { padding: 40px 0; }
.ps-benefits .section-title { text-align:center; margin-bottom: 1.5rem; }
.benefits-grid { 
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; 
}
.benefit { 
  display:flex; gap: 14px; align-items:flex-start; 
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 1rem 1.1rem; 
}
.benefit i { 
  width: 40px; height: 40px; border-radius: 10px; 
  display:flex; align-items:center; justify-content:center; 
  background: rgba(76,123,255,0.12); color: var(--accent-color); 
}
.benefit h4 { margin: 0 0 .25rem; font-size: 1rem; color: #cfe0ff; }
.benefit p { margin: 0; color: var(--text-secondary); font-size: .95rem; }

/* CTA */
.ps-cta { padding: 20px 0 80px; }
.ps-cta-box { 
  margin: 0 auto; max-width: 980px; 
  background: linear-gradient(135deg, rgba(30,200,255,0.10), rgba(76,123,255,0.12));
  border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; 
  padding: 2rem; text-align: center; 
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}
.ps-cta-box h3 { margin: 0 0 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .ps-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .ps-hero-illustration { justify-content: center; }
  .ps-cards { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ps-hero-title { font-size: 2rem; }
  .ps-cards, .benefits-grid { grid-template-columns: 1fr; }
}

/* Final override: hide hamburger on tablet and desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* Scroll-triggered reveal (fade-in + slide-up) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* Staggered children for features and benefits */
.reveal.reveal-stagger .ps-cards > .ps-card,
.reveal.reveal-stagger .benefits-grid > .benefit { 
  opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; will-change: opacity, transform;
}
.reveal.reveal-stagger.in .ps-cards > .ps-card,
.reveal.reveal-stagger.in .benefits-grid > .benefit { opacity: 1; transform: none; }

/* Stagger delays using nth-child (up to 6 items) */
.reveal.reveal-stagger.in .ps-cards > .ps-card:nth-child(1),
.reveal.reveal-stagger.in .benefits-grid > .benefit:nth-child(1) { transition-delay: .05s; }
.reveal.reveal-stagger.in .ps-cards > .ps-card:nth-child(2),
.reveal.reveal-stagger.in .benefits-grid > .benefit:nth-child(2) { transition-delay: .12s; }
.reveal.reveal-stagger.in .ps-cards > .ps-card:nth-child(3),
.reveal.reveal-stagger.in .benefits-grid > .benefit:nth-child(3) { transition-delay: .19s; }
.reveal.reveal-stagger.in .benefits-grid > .benefit:nth-child(4) { transition-delay: .26s; }
.reveal.reveal-stagger.in .benefits-grid > .benefit:nth-child(5) { transition-delay: .33s; }

/* Let's Talk Button */
.lets-talk-btn {
    background: #2196f3;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lets-talk-btn:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: #fff;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.modal-content h2 {
    color: #1e3c72;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.mandatory-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.required {
    color: #ff0000;
}

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

.form-row:last-child {
    margin-bottom: 0;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #999;
}

.phone-input {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.code-select {
    width: 100%;
    color: #1e3c72;
}

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

.form-row textarea {
    grid-column: span 2;
    height: 120px;
    resize: vertical;
}

.form-row:last-child {
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: #666;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #555;
}

@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }

    .modal-content {
        padding: 25px;
        margin: 20px;
    }

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

    .form-row textarea {
        grid-column: span 1;
    }

    .phone-input {
        grid-template-columns: 80px 1fr;
        gap: 8px;
    }
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.3s ease;
    z-index: 1000;
}

.close-btn:hover {
    color: #333;
}

@media (max-width: 768px) {
    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 24px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.address-block {
    margin-top: 0.5rem;
}

.address-block h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

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

.required {
    color: var(--accent-color);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Honeypot field hidden from users */
.hp-field { position: absolute !important; left: -5000px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; overflow: hidden !important; }

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Analytics Card Styles */
.analytics-card {
    background: linear-gradient(135deg, #1a237e 0%, #4527a0 100%);
    color: white;
}

.analytics-background {
    position: relative;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Bar Chart Animation */
.bar-chart {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
}

.bar {
    width: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: barGrow 1.5s infinite ease-out;
}

.bar1 { height: 60%; animation-delay: 0s; }
.bar2 { height: 80%; animation-delay: 0.2s; }
.bar3 { height: 65%; animation-delay: 0.4s; }
.bar4 { height: 90%; animation-delay: 0.6s; }
.bar5 { height: 75%; animation-delay: 0.8s; }

@keyframes barGrow {
    0% { transform: scaleY(0.3); }
    50% { transform: scaleY(1.2); }
    100% { transform: scaleY(1); }
}

/* Line Graph Animation */
.line-graph {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 150px;
    height: 80px;
}

.graph-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

/* Data Points */
.data-points {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
}

.data-point {
    text-align: center;
}

.data-point .value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.data-point .label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Analytics Content */
.analytics-content {
    padding: 20px;
}

.analytics-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.analytics-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.analytics-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.analytics-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Card Overlay Animation */
.analytics-card .card-overlay {
    background: linear-gradient(to top, rgba(26, 35, 126, 0.95), rgba(69, 39, 160, 0.8));
    transform: translateY(70%);
    transition: transform 0.4s ease;
}

.analytics-card:hover .card-overlay {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bar-chart {
        gap: 5px;
    }
    
    .bar {
        width: 6px;
    }
    
    .line-graph {
        width: 100px;
    }
    
    .data-point .value {
        font-size: 1.2rem;
    }
}

/* Modern Analytics Styles */
.modern-analytics {
    position: relative;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a237e 0%, #4527a0 100%);
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 120px;
    margin: 0 auto;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: #64ffda;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 42;
    animation: progress 2s ease-out forwards;
}

.progress-text {
    fill: white;
    font-size: 20px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

@keyframes progress {
    from { stroke-dashoffset: 283; }
    to { stroke-dashoffset: 42; }
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(100, 255, 218, 0.2));
    animation: wave 3s linear infinite;
}

.wave:nth-child(2) {
    animation-delay: -1.5s;
    opacity: 0.5;
}

.wave:nth-child(3) {
    animation-delay: -2.25s;
    opacity: 0.3;
}

@keyframes wave {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.8); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.metric {
    text-align: center;
    color: white;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #64ffda;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.metric-trend {
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-trend.up {
    color: #64ffda;
}

.metric-trend.stable {
    color: #ffd700;
}

/* Pulse Dots */
.pulse-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #64ffda;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.pulse-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-dot:nth-child(3) {
    animation-delay: 1s;
}

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

/* Feature Icons */
.analytics-features .icon {
    width: 24px;
    height: 24px;
    fill: #64ffda;
}

.analytics-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.analytics-features li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .metric-value {
        font-size: 1.2rem;
    }
}

/* Publisher Solutions Section */
.publisher-solutions {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.solutions-slider {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.solution-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(76, 123, 255, 0.1);
    overflow: hidden;
    height: 500px;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Analytics Card */
.analytics-card .analytics-visual {
    height: 250px;
    margin-bottom: 2rem;
    position: relative;
}

.chart-container {
    height: 100%;
    position: relative;
}

.data-points {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.data-points.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.data-point {
    text-align: center;
}

.data-point .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C7BFF;
    display: block;
}

.data-point .label {
    font-size: 0.875rem;
    color: #64748B;
}

/* Engagement Card */
.engagement-card .engagement-visual {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.user-group {
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.user-group.animate-in {
    opacity: 1;
    transform: scale(1);
}

.user-icon {
    width: 60px;
    height: 60px;
    background: #4C7BFF;
    border-radius: 50%;
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #4C7BFF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Monetization Card */
.monetization-card .monetization-visual {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.revenue-graph {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
}

.graph-bar {
    width: 40px;
    background: linear-gradient(180deg, #4C7BFF 0%, #2563EB 100%);
    border-radius: 8px 8px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.graph-bar.animate-in {
    transform: scaleY(1);
}

.graph-bar:nth-child(1) {
    height: 60%;
}

.graph-bar:nth-child(2) {
    height: 80%;
}

.graph-bar:nth-child(3) {
    height: 100%;
}

/* Card Info */
.card-info {
    flex-grow: 1;
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.card-info p {
    color: #64748B;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #334155;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: #4C7BFF;
    position: absolute;
    left: 0;
    top: 0;
}

/* Slider Navigation */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    margin: 0 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet .bullet-text {
    font-size: 0.875rem;
    color: #64748B;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet .bullet-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4C7BFF;
    transition: width 0.3s ease;
}

.swiper-pagination-bullet-active .bullet-text {
    color: #4C7BFF;
    font-weight: 600;
}

.swiper-pagination-bullet-active .bullet-text::after {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: #4C7BFF;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solution-card {
        height: auto;
        min-height: 600px;
    }

    .analytics-visual,
    .engagement-visual,
    .monetization-visual {
        height: 200px !important;
    }

    .data-points {
        flex-direction: column;
        gap: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Analytics Slideshow */
.analytics-visual {
    position: relative;
    height: 400px;
    background: #F8FAFF;
    border-radius: 16px;
    overflow: hidden;
}

.analytics-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.analytics-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease-in-out;
    pointer-events: none;
}

.analytics-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.analytics-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.6s ease-out;
}

.analytics-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.slide-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .analytics-visual {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h3 {
        font-size: 1.25rem;
    }

    .slide-content p {
        font-size: 0.875rem;
    }
}

/* Analytics Showcase */
.analytics-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(to bottom right, #F8FAFF, #FFFFFF);
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
}

.analytics-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.analytics-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.analytics-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Dashboard View */
.analytics-dashboard {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.live-indicator {
    background: #22C55E;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-box {
    background: #F8FAFF;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s forwards;
}

.metric-box:nth-child(2) {
    animation-delay: 0.2s;
}

.metric-box:nth-child(3) {
    animation-delay: 0.4s;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C7BFF;
    display: block;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 4px;
    display: block;
}

.trend {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-top: 8px;
}

.trend.up {
    background: #DCFCE7;
    color: #166534;
}

.trend.stable {
    background: #FEF9C3;
    color: #854D0E;
}

/* Revenue Chart */
.revenue-chart {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.time-period {
    color: #64748B;
    font-size: 0.875rem;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
}

.bar-group {
    text-align: center;
    flex: 1;
}

.bar-value {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 8px;
}

.bar {
    background: #4C7BFF;
    width: 24px;
    margin: 0 auto;
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: growBar 1s forwards;
}

.bar-label {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #64748B;
}

/* User Flow */
.user-flow {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.flow-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.flow-status {
    color: #4C7BFF;
    font-size: 0.875rem;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.flow-node {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s forwards;
}

.flow-node:nth-child(3) {
    animation-delay: 0.2s;
}

.flow-node:nth-child(5) {
    animation-delay: 0.4s;
}

.node-circle {
    width: 80px;
    height: 80px;
    background: #F8FAFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
}

.node-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #4C7BFF;
    animation: circlePulse 2s infinite;
}

.node-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4C7BFF;
}

.node-label {
    font-size: 0.875rem;
    color: #64748B;
}

.flow-arrow {
    flex: 1;
    height: 2px;
    background: #E2E8F0;
    position: relative;
    margin: 0 16px;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #E2E8F0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Performance Metrics */
.performance-metrics {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.metrics-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.update-time {
    color: #64748B;
    font-size: 0.875rem;
}

.circular-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #F1F5F9;
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: #4C7BFF;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: progressCircle 1.5s ease-out forwards;
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C7BFF;
    display: block;
}

.progress-label {
    font-size: 0.75rem;
    color: #64748B;
}

/* Navigation Dots */
.analytics-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #4C7BFF;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growBar {
    to {
        transform: scaleY(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes circlePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progressCircle {
    to {
        stroke-dashoffset: 50;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .analytics-visual {
        height: 500px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .chart-bars {
        height: 150px;
    }

    .flow-diagram {
        flex-direction: column;
        gap: 20px;
    }

    .flow-arrow {
        width: 2px;
        height: 20px;
        margin: 8px 0;
    }

    .flow-arrow::after {
        right: 50%;
        top: 100%;
        transform: translateX(50%);
        border-top: 6px solid #E2E8F0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: none;
    }

    .circular-metrics {
        flex-direction: column;
        gap: 24px;
    }
}

/* Tech Community Leading Brands Section */
.tech-brands {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.tech-brands .section-title {
    text-align: center;
    color: #0B2447;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

.brands-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.brand-item {
    position: relative;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.brand-item img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation durations */
.animate__animated.animate__fadeInUp,
.animate__animated.animate__fadeInRight {
    --animate-duration: 0.8s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brand-item img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .brands-container {
        grid-template-columns: 1fr;
    }
    
    .brand-item img {
        max-width: 160px;
    }
}

/* Career Advancement Section */
.career-advancement {
    padding: 6rem 0;
}

.career-advancement .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
.career-advancement .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26,35,126,0.08); /* themed tint instead of white */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(76,123,255,0.22); /* themed border */
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 200px at var(--mx, -20%) var(--my, -20%), rgba(30,200,255,0.15), transparent 40%);
    transition: opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(76,123,255,0.12) inset;
    border-color: rgba(76,123,255,0.28);
}

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

.career-advancement .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.career-advancement .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 123, 255, 0.1);
    border-radius: 16px;
}

.career-advancement .service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.career-advancement .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.career-advancement .service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.company-sections {
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-advancement .services-grid {
        grid-template-columns: 1fr;
    }
    
    .career-advancement .service-card {
        padding: 1.5rem;
    }
}

/* Career Advancement Section Styles */
.career-advancement {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(76, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    background: var(--accent-color);
}

.service-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--text-color);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--text-color);
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* Remove unused sections */
.tech-community,
.tech-brands,
.certification,
.partner-badge,
.cert-text {
    display: none;
}

/* Clean up navigation */
.nav-links {
    gap: 2rem;
}

/* Policy Pages Styles */
.policy-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    color: var(--text-color);
}

.policy-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.policy-date {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--accent-color);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--text-color);
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 20px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .cookie-table {
        margin: 1.5rem -1.5rem;
        width: calc(100% + 3rem);
    }

    .cookie-table table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

/* Additional Policy Page Styles */
.policy-content .emphasis {
    background: rgba(255, 87, 87, 0.1);
    border-left: 4px solid rgba(255, 87, 87, 0.5);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
}

.policy-content ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.policy-content ol li {
    counter-increment: item;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.policy-content ol li:before {
    content: counter(item);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.policy-content address {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-style: normal;
}

/* Enhance mobile responsiveness */
@media (max-width: 768px) {
    .policy-content ol li {
        padding-left: 2rem;
    }

    .policy-content .emphasis {
        padding: 0.75rem;
        margin: 1rem 0;
    }
}

/* Enhanced Get Started Button */
.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-get-started:active {
    transform: translateY(1px);
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-get-started:hover::before {
    transform: translateX(100%);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .btn-icon {
    transform: translateX(4px);
}

/* Hero section adjustments */
.hero-actions {
    margin-top: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

@media (max-width: 768px) {
    .btn-get-started {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }
}

/* Image Styles */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.career-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Partner Logos */
.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Solution Card Images */
.solution-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .hero-img {
        max-width: 100%;
    }

    .partner-logo {
        height: 40px;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0;
    }

    .footer-links {
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Network Effect Styles */
.network-effect {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.network-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.network-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.network-stats h3 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.network-stats h3 span {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.network-stats p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.network-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.network-description .btn-primary {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.network-description .btn-primary:hover {
    background: #5d89ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 123, 255, 0.3);
}

@media (max-width: 992px) {
    .network-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .network-stats {
        margin-bottom: 1rem;
    }
}
