/* Synovex AI - Premium Dark Theme */
:root {
    --syn-bg: #050208;
    --syn-bg-secondary: #0a0510;
    --syn-bg-card: rgba(15, 10, 25, 0.85);
    --syn-cyan: #00f2ff;
    --syn-blue: #0066ff;
    --syn-purple: #bc00ff;
    --syn-magenta: #ff00aa;
    --syn-gradient: linear-gradient(135deg, var(--syn-cyan) 0%, var(--syn-blue) 50%, var(--syn-purple) 100%);
    --syn-gradient-text: linear-gradient(90deg, var(--syn-cyan), var(--syn-purple));
    --syn-text: #e8e8f0;
    --syn-text-muted: #9ca3b8;
    --syn-border: rgba(0, 242, 255, 0.15);
    --syn-glow: 0 0 30px rgba(0, 242, 255, 0.2);
    --syn-glass: rgba(255, 255, 255, 0.03);
    --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Rajdhani', 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background: var(--syn-bg);
    color: var(--syn-text);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(188, 0, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gradient-text {
    background: var(--syn-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted-syn { color: var(--syn-text-muted) !important; }

/* Navbar */
.syn-navbar {
    background: rgba(5, 2, 8, 0.78) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--syn-border);
    padding: 0.45rem 0;
    transition: all 0.3s ease;
}

.syn-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Brand logo — icon + text */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    flex-shrink: 0;
}

.brand-logo:hover .brand-icon {
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.5));
    transform: scale(1.04);
}

.brand-icon {
    height: 52px;
    width: 52px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.25));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--syn-text);
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.62rem;
    color: var(--syn-text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}

.brand-logo-sm .brand-icon { height: 44px; width: 44px; }
.brand-logo-sm .brand-name { font-size: 1.2rem; }

.footer-brand.brand-logo { margin-bottom: 0; }
.footer-brand .brand-icon { height: 48px; width: 48px; }

.syn-navbar .navbar-brand {
    margin-right: 1rem;
    padding: 0;
}

.syn-navbar .nav-link {
    color: var(--syn-text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.syn-navbar .nav-link:hover,
.syn-navbar .nav-link.active {
    color: var(--syn-cyan) !important;
}

.syn-navbar .dropdown-menu {
    background: var(--syn-bg-secondary);
    border: 1px solid var(--syn-border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.syn-navbar .dropdown-item {
    color: var(--syn-text-muted);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.syn-navbar .dropdown-item:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--syn-cyan);
}

.navbar-toggler {
    border-color: var(--syn-border);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Buttons */
.btn-syn-primary {
    background: var(--syn-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.btn-syn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--syn-glow), 0 10px 40px rgba(188, 0, 255, 0.3);
    color: #fff;
}

.btn-syn-outline {
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--syn-bg), var(--syn-bg)), var(--syn-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: var(--syn-cyan);
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-syn-outline:hover {
    background: var(--syn-gradient);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero */
.hero-section {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
}

/* Cinematic full-width hero with background image */
.hero-cinematic {
    min-height: 100vh;
    margin-top: -88px;
    padding: 88px 0 60px;
    align-items: stretch;
}

/* Split hero — sharp image + clean content alignment */
.hero-split {
    min-height: auto;
    margin-top: -76px;
    padding: 88px 0 40px;
    background:
        radial-gradient(ellipse 70% 60% at 85% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(188, 0, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #050208 0%, #080412 100%);
}

.hero-split.hero-section::before,
.hero-split.hero-section::after {
    display: none;
}

.hero-split::before,
.hero-split::after {
    display: none;
}

.hero-split-accent {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f2ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-right: 0;
}

.hero-split .hero-badge {
    margin-bottom: 0.85rem;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
}

.hero-split .hero-title {
    font-size: clamp(1.85rem, 3.2vw, 2.85rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero-split .hero-subtitle {
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.hero-split .btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.88rem;
}

.hero-stats-row {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.hero-stats-row .hero-stat {
    width: 100%;
    min-width: 0;
    text-align: center;
    height: 100%;
    padding: 0.75rem 0.85rem;
}

.hero-stats-row .hero-stat h3 {
    font-size: 2.1rem;
}

.hero-stats-row .hero-stat p {
    font-size: 0.8rem;
}

.hero-grid {
    min-height: auto;
}

.hero-bg,
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    background-size: cover;
    background-position: 58% center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 2, 8, 0.22);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 2, 8, 0.9) 0%,
        rgba(5, 2, 8, 0.62) 34%,
        rgba(5, 2, 8, 0.22) 58%,
        rgba(5, 2, 8, 0.04) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-grid {
    min-height: auto;
}

/* removed forced full-viewport hero height */

.min-vh-hero {
    min-height: auto;
}

.hero-glass-panel {
    background: rgba(8, 4, 18, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.28);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-cinematic .hero-subtitle {
    max-width: 100%;
}

.hero-cinematic .hero-stats {
    margin-top: 0;
}

.hero-cinematic::before,
.hero-cinematic::after {
    display: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(188, 0, 255, 0.1) 0%, transparent 70%);
    bottom: 0;
    left: -100px;
    animation: pulse-glow 5s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(188, 0, 255, 0.08));
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 50px;
    padding: 0.45rem 1.25rem;
    font-size: 0.82rem;
    color: var(--syn-cyan);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--syn-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat h3 {
    font-size: 2.75rem;
    margin-bottom: 0;
    background: var(--syn-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-stat {
    padding: 1rem 1.25rem;
    background: rgba(0, 242, 255, 0.04);
    border: 1px solid var(--syn-border);
    border-radius: 14px;
    min-width: 130px;
}

/* Hero image frame */
.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.25);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    background: #0a0510;
    line-height: 0;
}

.hero-image-glow {
    position: absolute;
    inset: -3px;
    background: var(--syn-gradient);
    opacity: 0.28;
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

.hero-split .fade-up {
    opacity: 1;
    transform: none;
}

.hero-image-wrap .hero-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 317;
    object-fit: cover;
    object-position: 36% center;
    display: block;
    border-radius: 0;
}

@media (min-width: 992px) {
    .hero-image-wrap .hero-main-img {
        min-height: 0;
        max-height: 300px;
    }

    .hero-stats-row {
        margin-left: 0;
    }
}

.hero-stat p {
    color: var(--syn-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--syn-cyan);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(-100px) translateX(20px); opacity: 0.6; }
}

/* Section */
.section-padding { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--syn-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

/* Glass Cards */
.glass-card {
    background: var(--syn-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--syn-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Auto-height cards — use instead of height:100% for stacked layouts */
.glass-card-auto {
    height: auto !important;
}

.glass-card:not(.glass-card-auto)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--syn-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:not(.glass-card-auto):hover::before { opacity: 1; }

.glass-card:not(.glass-card-auto):hover {
    transform: translateY(-8px);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--syn-cyan);
}

.glass-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.glass-card p {
    color: var(--syn-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--syn-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    color: var(--syn-purple);
    gap: 0.75rem;
}

/* Service Cards with Image */
.service-card-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 180px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-card:hover .service-card-img img {
    transform: scale(1.08);
}

/* Counters */
.counter-section {
    background: var(--syn-bg-secondary);
    border-top: 1px solid var(--syn-border);
    border-bottom: 1px solid var(--syn-border);
}

.counter-item {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--syn-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    color: var(--syn-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--syn-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: #fff;
}

/* Testimonials */
.testimonial-card {
    background: var(--syn-bg-card);
    border: 1px solid var(--syn-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--syn-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--syn-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

/* Tech Stack */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--syn-glass);
    border: 1px solid var(--syn-border);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin: 0.25rem;
    font-size: 0.85rem;
    color: var(--syn-text-muted);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    border-color: var(--syn-cyan);
    color: var(--syn-cyan);
}

/* FAQ Accordion */
.accordion-syn .accordion-item {
    background: var(--syn-bg-card);
    border: 1px solid var(--syn-border);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-syn .accordion-button {
    background: transparent;
    color: var(--syn-text);
    font-weight: 600;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem;
}

.accordion-syn .accordion-button:not(.collapsed) {
    background: rgba(0, 242, 255, 0.05);
    color: var(--syn-cyan);
}

.accordion-syn .accordion-button::after {
    filter: invert(1);
}

.accordion-syn .accordion-body {
    color: var(--syn-text-muted);
    padding: 0 1.5rem 1.25rem;
}

/* Forms */
.form-control-syn,
.form-select-syn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--syn-border);
    border-radius: 10px;
    color: var(--syn-text);
    padding: 0.75rem 1rem;
}

.form-control-syn:focus,
.form-select-syn:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--syn-cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1);
    color: var(--syn-text);
}

.form-control-syn::placeholder { color: var(--syn-text-muted); }

.form-label-syn {
    color: var(--syn-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--syn-gradient);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2,
.cta-section p,
.cta-section a,
.cta-section .btn {
    position: relative;
    z-index: 2;
}

/* Footer */
.syn-footer {
    background: var(--syn-bg-secondary);
    border-top: 1px solid var(--syn-border);
    padding: 80px 0 30px;
}

.syn-footer h5 {
    color: var(--syn-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.syn-footer a {
    color: var(--syn-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.syn-footer a:hover { color: var(--syn-cyan); }

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--syn-border);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--syn-gradient);
    border-color: transparent;
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid var(--syn-border);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--syn-text-muted);
    font-size: 0.85rem;
}

/* Page Header */
.page-header {
    padding: 40px 0 60px;
    background: var(--syn-bg-secondary);
    border-bottom: 1px solid var(--syn-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.breadcrumb-syn {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-syn .breadcrumb-item a {
    color: var(--syn-cyan);
    text-decoration: none;
}

.breadcrumb-syn .breadcrumb-item.active {
    color: var(--syn-text-muted);
}

.breadcrumb-syn .breadcrumb-item + .breadcrumb-item::before {
    color: var(--syn-text-muted);
}

/* Blog */
.blog-card-img {
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-meta {
    font-size: 0.8rem;
    color: var(--syn-text-muted);
}

.blog-tag {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    color: var(--syn-cyan);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-decoration: none;
}

/* Product Screenshots */
.screenshot-gallery img {
    border-radius: 12px;
    border: 1px solid var(--syn-border);
    transition: transform 0.3s ease;
}

.screenshot-gallery img:hover {
    transform: scale(1.02);
    border-color: var(--syn-cyan);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Alerts */
.alert-syn-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    border-radius: 12px;
}

.alert-syn-error {
    background: rgba(255, 0, 100, 0.1);
    border: 1px solid rgba(255, 0, 100, 0.3);
    color: #ff0064;
    border-radius: 12px;
}

/* Content prose */
.content-prose h2, .content-prose h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-prose p, .content-prose li {
    color: var(--syn-text-muted);
}

.content-prose ul { padding-left: 1.5rem; }

.content-prose img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Animations on scroll */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Site layout — fixed navbar offset */
.site-body {
    padding-top: 76px;
}

.section-after-hero {
    padding-top: 56px;
}

/* Flash notification below navbar */
.flash-banner {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 1020;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideDown 0.4s ease;
}

.flash-success {
    background: rgba(37, 211, 102, 0.15);
    border-bottom: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.flash-error {
    background: rgba(255, 0, 100, 0.12);
    border-bottom: 1px solid rgba(255, 0, 100, 0.35);
    color: #ff4d8d;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Contact page */
.contact-list { margin: 0; }
.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--syn-border);
}
.contact-list-item:last-child { border-bottom: none; }
.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 10px;
    color: var(--syn-cyan);
    font-size: 1.1rem;
}
.contact-side-img {
    max-height: 200px;
    object-fit: cover;
    border: 1px solid var(--syn-border);
}
.contact-form-card { min-height: 100%; }

/* Service page sidebar */
.sidebar-sticky {
    position: sticky;
    top: 96px;
    align-self: flex-start;
}
.service-hero-img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
}
.service-page-header { padding-bottom: 60px; }
/* Responsive images site-wide */
img {
    max-width: 100%;
    height: auto;
}

.service-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 575px) {
    .service-card-img img { height: 180px; }
    .section-padding { padding: 48px 0; }
    .display-5 { font-size: 1.75rem; }
    .btn-syn-primary,
    .btn-syn-outline { width: 100%; text-align: center; }
    .hero-copy .btn-syn-primary,
    .hero-copy .btn-syn-outline { width: auto; }
}

/* Cloud Solutions — featured banner */
.service-hero-banner {
    position: relative;
    min-height: 460px;
    margin-top: -88px;
    padding: 110px 0 70px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 2, 8, 0.55) 0%, rgba(5, 2, 8, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-hero-panel {
    max-width: 780px;
    background: rgba(8, 4, 18, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-top: 1rem;
}

.cloud-showcase {
    border: 1px solid rgba(0, 242, 255, 0.25);
    box-shadow: var(--syn-glow);
}

.cloud-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    background: rgba(5, 2, 8, 0.6);
}

.cloud-header-badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cloud-header-badge span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--syn-cyan);
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

@media (max-width: 991px) {
    .cloud-header-badge {
        justify-content: flex-start;
    }
}

/* Global alignment polish */
.container {
    max-width: 1200px;
}

.section-header {
    margin-bottom: 3rem;
}

.glass-card h4 {
    line-height: 1.35;
}

.hero-main-img, .about-img {
    object-fit: cover;
    width: 100%;
}

.about-img {
    max-height: 420px;
    border-radius: 16px;
    border: 1px solid var(--syn-border);
}

@media (max-width: 991px) {
    .hero-split {
        min-height: auto;
        padding: 84px 0 36px;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-copy .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy .d-flex {
        justify-content: center;
    }

    .hero-image-wrap {
        max-width: 640px;
        margin: 0 auto;
    }

    .hero-image-wrap .hero-main-img {
        max-height: 220px;
        object-position: 50% center;
    }

    .hero-stats-row {
        max-width: 100%;
    }

    .hero-cinematic { min-height: auto; padding-bottom: 50px; }
    .hero-bg,
    .hero-bg-img { object-position: 62% center; background-position: 62% center; }
    .hero-overlay-gradient {
        background: linear-gradient(
            180deg,
            rgba(5, 2, 8, 0.82) 0%,
            rgba(5, 2, 8, 0.5) 42%,
            rgba(5, 2, 8, 0.18) 100%
        );
    }
    .min-vh-hero { min-height: auto; padding: 2rem 0; }
    .hero-glass-panel { padding: 1.5rem; }
    .service-hero-banner { min-height: 380px; padding-top: 100px; }
    .brand-name { font-size: 1.2rem; }
    .brand-icon { height: 44px; width: 44px; }
    .brand-tagline { display: none; }
    .hero-section { min-height: auto; padding: 40px 0 60px; }
    .section-padding { padding: 60px 0; }
    .cta-section { padding: 2.5rem 1.5rem; }
    .sidebar-sticky { position: static; }
}

@media (max-width: 767px) {
    .hero-stats-row .hero-stat h3 { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-image-wrap .hero-main-img { max-height: 200px; }
    .hero-stats { gap: 1rem; }
    .hero-stat h3 { font-size: 2rem; }
}

.pagination .page-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--syn-border);
    color: var(--syn-text-muted);
}

.pagination .page-link:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--syn-cyan);
    color: var(--syn-cyan);
}

.pagination .page-item.active .page-link {
    background: var(--syn-gradient);
    border-color: transparent;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    background: transparent;
    color: var(--syn-text-muted);
    opacity: 0.5;
}
