@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/**
 * Dividigital — Premium Corporate Design System
 * Completely custom visual identity tailored around dynamic blue-green theme tokens.
 */

:root {
    --bg-base: #040814;          /* Deep premium space navy */
    --bg-surface: #0a0f24;       /* Sleek deep slate-blue card background */
    --bg-surface-light: #121b38; /* Card hover background state */
    
    /* New Custom Brand Identity Color Tokens */
    --accent-primary: #009ee2;   /* Vibrant digital blue */
    --accent-secondary: #008e3d; /* Vibrant organic green */
    
    /* Premium visual gradients merging organic growth and digital authority */
    --accent-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --accent-gradient-hover: linear-gradient(135deg, #008cc9 0%, #007a34 100%);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 158, 226, 0.12);
    --glass-bg: rgba(10, 15, 36, 0.75);
    --glass-border: rgba(0, 158, 226, 0.08);
    
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(0, 158, 226, 0.12);
    --shadow-glow-secondary: 0 0 30px rgba(0, 142, 61, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base Elements */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    max-width: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    position: relative;
    max-width: 100%;
}

/* Premium Neo-Glassmorphism Background glow elements */
.bg-glow-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 158, 226, 0.12) 0%, rgba(4, 8, 20, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-right {
    position: absolute;
    top: 30%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 142, 61, 0.08) 0%, rgba(4, 8, 20, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.global-cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 950px;
    background-image:
        linear-gradient(rgba(0, 158, 226, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 158, 226, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    mask-image: radial-gradient(circle at 50% 380px, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 380px, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.section-sm {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-muted {
    color: var(--text-muted);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header .subtitle {
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 158, 226, 0.06);
    border: 1px solid rgba(0, 158, 226, 0.15);
    border-radius: var(--radius-pill);
    color: var(--accent-primary);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

/* Premium Floating Navigation Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition-normal), backdrop-filter var(--transition-normal), padding var(--transition-normal), border-color var(--transition-normal);
    padding: 1.75rem 0;
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 158, 226, 0.1);
    box-shadow: var(--shadow-soft);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: -0.03em;
}

.brand-logo .dot {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.75rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.25rem;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Offcanvas close styling */
.offcanvas-close-btn,
.offcanvas-cta-btn {
    display: none !important;
}

/* Professional Dual-Gradient Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.85rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.65rem 1.35rem;
    font-size: 0.8rem;
}

.btn-accent {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 158, 226, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient-hover);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-accent:hover {
    transform: translateY(-2.5px);
    box-shadow: var(--shadow-glow), var(--shadow-soft);
    color: #ffffff;
}

.btn-accent:hover::before {
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
    position: relative;
}

.btn-outline:hover {
    border-color: transparent;
    background: var(--accent-gradient);
    color: #ffffff;
    transform: translateY(-2.5px);
    box-shadow: var(--shadow-glow-secondary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.65rem;
    cursor: pointer;
}

/* Breathtaking Split / Aurora Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 7rem;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 158, 226, 0.05) 0%, rgba(4, 8, 20, 0) 80%);
}

.hero-content {
    max-width: 950px;
    z-index: 2;
    padding: 0 1rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 158, 226, 0.04);
    border: 1px solid rgba(0, 158, 226, 0.15);
    padding: 0.55rem 1.35rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2.25rem;
    backdrop-filter: blur(10px);
    color: var(--accent-primary);
    animation: fadeInDown 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-content h1 {
    font-size: 4.75rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}

.hero-content h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.65;
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s backwards;
}

/* Client Logos Bar */
.clients-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 15, 36, 0.4);
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.client-logo {
    height: 38px;
    filter: grayscale(100%) brightness(170%);
    transition: filter var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
    opacity: 0.5;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.05);
}

/* Sleek Premium Neo-Glassmorphism Cards */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3.5rem 2.75rem;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.glass-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 158, 226, 0.25);
    box-shadow: var(--shadow-glow), var(--shadow-soft);
}

.glass-card:hover::before {
    width: 100%;
}

/* Services Modules */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.25rem;
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    background: rgba(0, 158, 226, 0.07);
    border: 1px solid rgba(0, 158, 226, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--accent-primary);
    font-size: 1.65rem;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.glass-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-gradient);
    color: #fff;
}

.service-title {
    font-size: 1.55rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--accent-secondary);
}

/* Metric Display Counters */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.25rem;
    margin-bottom: 4.5rem;
}

.metric-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    background: rgba(10, 15, 36, 0.35);
    border: 1px solid var(--border-color);
}

.metric-num {
    font-size: 3.75rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-head);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Portfolio Filters and Layouts */
.portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.45rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.75rem;
}

.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 158, 226, 0.2);
    box-shadow: var(--shadow-glow), var(--shadow-soft);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66%;
}

.portfolio-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.06);
}

.portfolio-meta {
    padding: 2.25rem;
}

.portfolio-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 0.65rem;
    display: block;
    font-weight: 700;
}

.portfolio-title {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

/* Strategic Milestone Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.25rem;
}

.process-step {
    position: relative;
    padding: 2.5rem 2.25rem;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.process-step:hover {
    border-color: rgba(0, 142, 61, 0.25);
    transform: translateY(-4px);
}

.process-num {
    font-size: 2.75rem;
    font-family: var(--font-head);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    line-height: 1;
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
    font-weight: 700;
}

.process-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Technical Safeguards Grid */
.safeguards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .safeguards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .safeguards-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom testimonial slider */
.testimonials-slider-wrapper {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    background: rgba(10, 15, 36, 0.45);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.45s ease;
}

.testimonial-slide.active {
    display: block;
}

.client-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.75rem;
    line-height: 1.55;
    font-weight: 500;
}

.client-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.client-info p {
    font-size: 0.88rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.75rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Conversion Action Panel Card */
.cta-section {
    background: rgba(10, 15, 36, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 158, 226, 0.15);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 5rem auto;
    max-width: 1200px;
    box-shadow: var(--shadow-soft), 0 25px 60px rgba(0, 0, 0, 0.5);
}

.cta-glow-1 {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 158, 226, 0.15) 0%, rgba(4, 8, 20, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 142, 61, 0.12) 0%, rgba(4, 8, 20, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(0, 158, 226, 0.05);
    border: 1px solid rgba(0, 158, 226, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, #009ee2 70%, #008e3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    position: relative;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.25rem auto;
    z-index: 1;
    position: relative;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

/* Dynamic sub-page styling */
.custom-page-wrapper {
    background: radial-gradient(circle at 50% 0%, rgba(0, 158, 226, 0.06) 0%, rgba(4, 8, 20, 0) 60%);
    min-height: 60vh;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.page-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2,
.page-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Structured detail pages layouts */
.detail-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.benefit-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    margin-top: 0 !important;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact layout pages */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.contact-info-card {
    padding: 3rem 2.5rem;
}

.contact-info-title {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 158, 226, 0.08);
    border: 1px solid rgba(0, 158, 226, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-details h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.contact-method-details p {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

/* Premium Form Elements */
.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-primary);
    background: rgba(0, 158, 226, 0.02);
    box-shadow: 0 0 15px rgba(0, 158, 226, 0.1);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--bg-surface);
    color: #fff;
}

/* Blog layouts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.75rem;
}

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 158, 226, 0.2);
}

.blog-img-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-meta-info {
    padding: 2.25rem;
}

.blog-tag-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 142, 61, 0.08);
    border: 1px solid rgba(0, 142, 61, 0.15);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-title-link h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.blog-title-link:hover h3 {
    color: var(--accent-primary);
}

.blog-short-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 1.25rem;
}

/* Beautiful custom pagination list */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4.5rem;
}

.pagination-item {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pagination-item:hover,
.pagination-item.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Dynamic detail page layout split */
.portfolio-detail-grid,
.detail-layout-split {
    display: grid;
    grid-template-columns: 1.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .portfolio-detail-grid,
    .detail-layout-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Sticky sidebar upgrades */
.sticky-sidebar {
    position: sticky;
    top: 120px;
    z-index: 10;
    transition: all var(--transition-fast) ease;
}

.sticky-sidebar .glass-card {
    transition: all var(--transition-normal) ease;
    border: 1px solid var(--glass-border) !important;
}

.sticky-sidebar .glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--service-accent) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 35px var(--service-accent-glow) !important;
}

/* Blueprint content card responsive padding */
.blueprint-content-card {
    padding: 3rem;
    background: rgba(10, 15, 36, 0.45);
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-soft), 0 0 30px var(--service-accent-glow2);
}

@media (max-width: 768px) {
    .blueprint-content-card {
        padding: 1.75rem;
    }
}

.detail-sidebar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.detail-sidebar-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 0.85rem;
}

.sidebar-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.sidebar-category-link:hover,
.sidebar-category-link.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateX(4px);
}

/* Timeline milstone cards */
.timeline-milestones {
    margin: 3.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.timeline-milestones::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    width: 2px;
    background: var(--border-color);
}

.milestone-node {
    position: relative;
    margin-bottom: 3rem;
}

.milestone-node::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-secondary);
    box-shadow: 0 0 10px var(--accent-secondary);
}

.milestone-node:hover::before {
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.milestone-year {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.milestone-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Master Footer presentation wrapper */
.site-footer {
    background: #03060f;
    background: radial-gradient(circle at 50% 0%, rgba(0, 158, 226, 0.06) 0%, rgba(216, 27, 96, 0.02) 40%, #03060f 80%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 6.5rem 0 3.5rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Elegant neon gradient accent running across the top boundary */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 158, 226, 0.45) 25%, rgba(216, 27, 96, 0.45) 75%, transparent 100%);
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.75fr 1.3fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Header typography for footer columns */
.footer-widget h4 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.65rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* Premium Social Buttons Grid */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hover-color, var(--accent-primary));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.social-icon-btn:hover {
    color: #fff;
    border-color: var(--hover-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--glow-color);
}

.social-icon-btn:hover::before {
    opacity: 0.15;
}

/* Specific Social Brand Profiles */
.social-icon-btn.facebook {
    --hover-color: #1877f2;
    --glow-color: rgba(24, 119, 242, 0.25);
}
.social-icon-btn.twitter {
    --hover-color: #ffffff;
    --glow-color: rgba(255, 255, 255, 0.2);
}
.social-icon-btn.linkedin {
    --hover-color: #0a66c2;
    --glow-color: rgba(10, 102, 194, 0.25);
}
.social-icon-btn.instagram {
    --hover-color: #e1306c;
    --glow-color: rgba(225, 48, 108, 0.25);
}

/* Premium Sliding Navigation Underlines */
.footer-links li {
    margin-bottom: 0.95rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    padding: 0.15rem 0;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Glassmorphic Global Node Cards */
.footer-node-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1.25rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.footer-node-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, var(--glow-color, rgba(0, 158, 226, 0.1)), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-node-card:hover {
    border-color: var(--theme-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
    background: rgba(255, 255, 255, 0.02);
}

.footer-node-card:hover::before {
    opacity: 1;
}

.footer-node-card.india {
    --theme-color: rgba(0, 158, 226, 0.3);
    --glow-color: rgba(0, 158, 226, 0.12);
}

.footer-node-card.dubai {
    --theme-color: rgba(37, 211, 102, 0.3);
    --glow-color: rgba(37, 211, 102, 0.12);
}

.footer-node-card.routing {
    --theme-color: rgba(216, 27, 96, 0.3);
    --glow-color: rgba(216, 27, 96, 0.12);
}

.footer-node-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--label-color, var(--accent-primary));
    font-weight: 700;
    display: block;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.footer-node-card:hover .footer-node-title {
    color: #fff;
    text-shadow: 0 0 8px var(--glow-color);
}

.footer-node-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.footer-node-link {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.footer-node-link i {
    color: var(--icon-color, var(--accent-primary));
    transition: transform 0.3s ease;
}

.footer-node-card:hover .footer-node-link i {
    transform: scale(1.15) rotate(5deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
}

@media (max-width: 767px) {
    .footer-bottom {
        padding-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* WhatsApp floating dialer */
.whatsapp-floating {
    position: fixed;
    bottom: 2.25rem;
    right: 2.25rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999; /* Ensure it stays above all overlays, chat widgets, and page elements */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

/* Subtle, premium breathing glow animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-floating svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    display: block;
    /* Visually center the bubble by compensating for the bottom-left tail's asymmetrical weight */
    transform: translate(-1px, 1px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-floating:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a; /* Slightly darker green on hover for high-end feel */
    color: #fff;
}

.whatsapp-floating:hover svg {
    transform: translate(-1px, 1px) scale(1.05) rotate(5deg); /* Playful micro-interaction on hover */
}

/* Responsive adjustment for clean positioning on mobile layouts */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-floating svg {
        width: 26px;
        height: 26px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom responsiveness styles */
@media (max-width: 991px) {
    .section {
        padding: 6rem 0;
    }
    
    .hero-content h1 {
        font-size: 3.75rem;
    }
    
    .navbar {
        position: relative;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 7.5rem 3rem;
        gap: 2rem;
        transition: right var(--transition-normal);
        z-index: 9999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Offcanvas close styling on mobile view */
    .offcanvas-close-btn {
        display: block !important;
        position: absolute;
        top: 2.25rem;
        right: 2.5rem;
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
    }
    
    .offcanvas-cta-btn {
        display: inline-flex !important;
        width: 100%;
        margin-top: 1rem;
    }
    
    .site-header-cta {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.35rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 3rem auto;
    }
    
    .cta-section h2 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .testimonials-slider-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .client-quote {
        font-size: 1.15rem;
        margin-bottom: 1.75rem;
    }

    .client-info h4 {
        font-size: 1.05rem;
    }

    .client-info p {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   Premium Mega Menu & Header Uprides
   ========================================================================== */
.nav-dropdown-wrapper {
    position: static;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: min(100vw - 4rem, 1200px);
    background: rgba(10, 15, 36, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 158, 226, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-soft), 0 30px 60px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 999;
}

.nav-dropdown-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-menu-title {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #fff;
    border-bottom: 1px solid rgba(0, 158, 226, 0.15);
    padding-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    user-select: none;
}

.accordion-caret {
    display: none;
    margin-left: auto;
    transition: transform var(--transition-fast);
}

.mega-menu-title.open .accordion-caret {
    transform: rotate(180deg);
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
    border-bottom: none !important;
}

.mega-menu-link::after {
    display: none !important;
}

.mega-menu-link:hover {
    background: rgba(0, 158, 226, 0.05);
    transform: translateX(4px);
}

.menu-link-icon {
    font-size: 1.45rem;
    color: var(--accent-primary);
    min-width: 26px;
    text-align: center;
}

.menu-link-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.menu-link-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: color var(--transition-fast);
}

.mega-menu-link:hover .menu-link-title {
    color: var(--accent-primary);
}

.menu-link-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .nav-dropdown-wrapper {
        width: 100%;
        display: block;
    }
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }
    .nav-dropdown-trigger i {
        transition: transform var(--transition-fast);
    }
    .nav-dropdown-trigger.open i {
        transform: rotate(180deg);
    }
    .mega-menu {
        display: none !important; /* overridden by JS inline style when open */
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        padding: 1rem 0 1rem 1rem;
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
    }
    .mega-menu.open {
        display: block !important;
    }
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .mega-menu-column {
        gap: 0.5rem;
    }
    .accordion-caret {
        display: block;
    }
    .mega-menu-title {
        border-bottom: none;
        padding-bottom: 0;
        cursor: pointer;
    }
    .mega-menu-links {
        display: none;
        margin-left: 1.85rem;
        margin-top: 0.5rem;
        border-left: 1px solid rgba(255,255,255,0.1);
        padding-left: 1rem;
    }
    .mega-menu-links.open {
        display: flex;
    }
}

/* ==========================================================================
   Premium Service Tabs System
   ========================================================================== */
.service-tabs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 3.5rem auto;
    width: fit-content;
    max-width: 100%;
    z-index: 5;
    position: relative;
}

.tab-buttons.sticky-tabs {
    position: sticky;
    top: calc(var(--header-height, 90px) + 15px);
    z-index: 100;
    background: rgba(4, 8, 20, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 158, 226, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: top var(--transition-fast), background var(--transition-fast);
}

@media (max-width: 767px) {
    .tab-buttons.sticky-tabs {
        top: calc(var(--header-height, 90px) + 8px);
        padding: 0.5rem 0.75rem;
        border-radius: 12px;
    }
}

.tab-btn {
    background: rgba(10, 15, 36, 0.4);
    border: 1px solid var(--border-color);
    outline: none;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.85rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tab-btn:hover {
    color: #ffffff;
    border-color: rgba(0, 158, 226, 0.35);
    background: rgba(0, 158, 226, 0.04);
}

.tab-btn.active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.tab-content {
    display: none;
    opacity: 0;
    width: 100%;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

/* Tab Responsiveness overrides */
@media (max-width: 767px) {
    .tab-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        padding: 0.5rem 1rem;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tab-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 0.7rem 1.35rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   Dividigital Premium Custom UI Overhaul Styles
   ========================================================================== */

/* Asymmetric Hero split column grids */
.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    text-align: left !important;
}

.hero-info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* Floating tech stack graphic overlays */
.hero-visual-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
    z-index: 2;
}

.glass-console-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 400px;
}

.glass-console-card {
    position: absolute;
    width: 330px;
    background: rgba(10, 15, 36, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.glass-console-card:hover {
    border-color: rgba(0, 158, 226, 0.35);
    transform: scale(1.02);
}

.glass-console-card.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: float-slow 6s ease-in-out infinite;
}

.glass-console-card.card-2 {
    top: 100px;
    right: -20px;
    z-index: 2;
    border-color: rgba(0, 142, 61, 0.25);
    animation: float-medium 8s ease-in-out infinite;
}

.glass-console-card.card-3 {
    bottom: -10px;
    left: 30px;
    z-index: 1;
    animation: float-fast 7s ease-in-out infinite;
}

/* Float Keyframes */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0px) rotate(1.5deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes float-fast {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.75deg); }
}

/* Endless scrolling marquee belt */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 1.5rem 0;
    position: relative;
    background: rgba(10, 15, 36, 0.2);
    margin: 2rem 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-base) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-base) 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 5.5rem;
    animation: marquee-scroll 32s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 0.10em;
    color: var(--text-muted);
    opacity: 0.35;
    transition: opacity var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    cursor: default;
    user-select: none;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--accent-primary);
    transform: scale(1.05);
}

/* Sticky Split-Screen Capability Showcase */
.sticky-split-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
}

.sticky-nav-column {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 50;
}

.sticky-nav-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 2.25rem;
    background: rgba(10, 15, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: left;
}

.sticky-nav-item:hover {
    background: rgba(10, 15, 36, 0.65);
    border-color: rgba(0, 158, 226, 0.3);
}

.sticky-nav-item.active {
    background: rgba(10, 15, 36, 0.85);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    background-image: linear-gradient(rgba(10,15,36,0.9), rgba(10,15,36,0.9)), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
}

.sticky-nav-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.sticky-nav-item.active .sticky-nav-num {
    opacity: 1;
}

.sticky-nav-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.sticky-nav-item.active .sticky-nav-label {
    color: #fff;
}

/* Premium Showcase Grid Layout System */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    width: 100%;
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Architecture Matrix (Asymmetrical cards) */
.architecture-matrix-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    gap: 2.25rem;
}

/* Terminal mock console */
.terminal-mock {
    font-family: 'Courier New', Courier, monospace;
    background: #02040a;
    border: 1px solid rgba(0, 158, 226, 0.15);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: left;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.65rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-body {
    font-size: 0.82rem;
    color: #38bdf8;
    line-height: 1.6;
}

/* Circular speed gauge */
.gauge-visual-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 1.5rem auto;
}

.gauge-svg {
    transform: rotate(-90deg);
}

.gauge-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: url(#gaugeGradient);
    stroke-width: 8;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-visual-container:hover .gauge-fill {
    stroke-dashoffset: 44; /* 90% fill representation */
}

.gauge-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-head);
}

.gauge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.gauge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Futuristic live telemetry shell logs */
.telemetry-console-wrapper {
    background: #02040a;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    text-align: left;
}

.telemetry-log-line {
    font-family: monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.telemetry-log-line.active {
    opacity: 1;
    transform: translateY(0);
}

.telemetry-log-line.success { color: #10b981; }
.telemetry-log-line.info { color: #009ee2; }
.telemetry-log-line.warn { color: #f59e0b; }

/* Grid columns helpers */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.grid-audit {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Responsiveness overrides for the new visual elements */
@media (max-width: 991px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center !important;
    }
    
    .hero-info-column {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-desc {
        font-size: 1.05rem;
        text-align: center;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .sticky-split-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .sticky-nav-column {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem 0.25rem 1.25rem 0.25rem;
        gap: 0.85rem;
    }
    
    .sticky-nav-item {
        flex-shrink: 0;
        padding: 0.9rem 1.6rem;
    }
    
    .staggered-grid {
        grid-template-columns: 1fr;
    }
    
    .staggered-grid .glass-card:nth-child(even) {
        margin-top: 0;
    }
    
    .architecture-matrix-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-2-col {
        grid-template-columns: 1fr;
    }
    
    .grid-audit {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 500px) {
    .glass-console-stack {
        max-width: 100%;
        height: 380px;
        margin: 0 auto;
    }
    
    .glass-console-card {
        width: 280px;
        padding: 1.25rem;
    }
    
    .glass-console-card.card-1 {
        top: 0;
        left: 0;
    }
    
    .glass-console-card.card-2 {
        top: 90px;
        right: 0px;
    }
    
    .glass-console-card.card-3 {
        bottom: 0px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.15rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   Premium Teardrop Card System (Based on 2nd Image Layout)
   ========================================================================== */
.teardrop-card {
    position: relative;
    background: #0a0f24;
    border: 3px solid var(--card-accent);
    border-radius: 48px 16px 48px 16px;
    padding: 6.5rem 2rem 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    overflow: hidden;
}

.teardrop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--card-glow);
}

.teardrop-icon-pocket {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 95px;
    height: 95px;
    background: var(--card-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 44px 0 48px 0;
    color: #ffffff;
    font-size: 2.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.teardrop-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.teardrop-title {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 1.25rem;
}

.teardrop-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 2rem;
}

.teardrop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-accent);
    color: #ffffff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
}

.teardrop-btn:hover {
    transform: translateY(-2.5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), var(--card-glow);
    color: #ffffff;
}

/* ==========================================================================
   Executive Minds Concentric Visual Avatars
   ========================================================================== */
.executive-avatar-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 2.25rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.executive-avatar-core {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background: rgba(10, 15, 36, 0.95);
    border: 2px solid var(--avatar-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.05), var(--avatar-glow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-card:hover .executive-avatar-core {
    transform: scale(1.04);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08), var(--avatar-glow), 0 0 30px rgba(255, 255, 255, 0.05);
}

.executive-avatar-initials {
    font-family: var(--font-head);
    font-size: 1.95rem;
    font-weight: 800;
    background: var(--avatar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.executive-avatar-orbit-1 {
    position: absolute;
    inset: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-top-color: var(--avatar-border);
    border-bottom-color: var(--avatar-border);
    border-radius: 50%;
    z-index: 1;
    animation: spin-clockwise 12s linear infinite;
    pointer-events: none;
}

.executive-avatar-orbit-2 {
    position: absolute;
    inset: -6px;
    border: 1px dotted rgba(255, 255, 255, 0.04);
    border-left-color: var(--avatar-border-alt);
    border-right-color: var(--avatar-border-alt);
    border-radius: 50%;
    z-index: 1;
    animation: spin-counter-clockwise 18s linear infinite;
    pointer-events: none;
}

.executive-avatar-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--avatar-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    z-index: 4;
    border: 2px solid #0a0f24;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@keyframes spin-clockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-counter-clockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* ==========================================================================
   Translucent Form Elements & Active Halos
   ========================================================================== */
.form-control {
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast) !important;
}

.form-control:focus {
    border-color: var(--accent-primary) !important;
    background: rgba(0, 158, 226, 0.03) !important;
    box-shadow: 0 0 20px rgba(0, 158, 226, 0.15) !important;
    transform: translateY(-2px);
}

.form-group label {
    transition: color var(--transition-fast);
}

.form-group:focus-within label {
    color: var(--accent-primary) !important;
}

/* ==========================================================================
   Dynamic FAQ Accordion Transitions
   ========================================================================== */
.faq-accordion-item.active-digital {
    border-color: #009ee2 !important;
    background: rgba(0, 158, 226, 0.03) !important;
    box-shadow: 0 4px 20px rgba(0, 158, 226, 0.05);
}

.faq-accordion-item.active-development {
    border-color: #009ee2 !important;
    background: rgba(0, 158, 226, 0.03) !important;
    box-shadow: 0 4px 20px rgba(0, 158, 226, 0.05);
}

.faq-accordion-item.active-design {
    border-color: #008e3d !important;
    background: rgba(0, 142, 61, 0.03) !important;
    box-shadow: 0 4px 20px rgba(0, 142, 61, 0.05);
}

/* ==========================================================================
   Service Detail Premium Presentation System
   ========================================================================== */
.service-hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.02) 0%, rgba(4, 8, 20, 0.6) 80%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Custom interactive glowing orbits for service hero */
.service-hero-icon-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-icon-circle {
    position: relative;
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.service-hero-icon-circle:hover {
    transform: scale(1.06) rotate(5deg);
}

.service-hero-icon-orbit-1 {
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    z-index: 2;
    animation: spin-clockwise 16s linear infinite;
    pointer-events: none;
}

.service-hero-icon-orbit-2 {
    position: absolute;
    inset: -12px;
    border: 1px dotted rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    z-index: 1;
    animation: spin-counter-clockwise 24s linear infinite;
    pointer-events: none;
}

/* Premium listings inside service page content */
.page-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-family: var(--font-head);
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.page-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.page-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: 2.25rem !important;
}

.page-content li {
    position: relative;
    padding: 1.15rem 1.5rem 1.15rem 3.25rem;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    transition: all 0.3s ease;
}

.page-content li strong {
    color: #fff;
}

.page-content li::before {
    content: '\203A'; /* Unicode single right caret */
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.page-content li:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(0, 158, 226, 0.15);
    color: #fff;
    transform: translateX(4px);
}

.page-content li:hover::before {
    transform: translateY(-50%) translateX(2px) scale(1.15);
}

/* Development or Design Category Specific overrides for list items */
.active-development-list li::before {
    color: #009ee2;
}
.active-development-list li:hover {
    border-color: rgba(0, 158, 226, 0.15);
}

.active-design-list li::before {
    color: #008e3d;
}
.active-design-list li:hover {
    border-color: rgba(0, 142, 61, 0.15);
}

/* Sidebar Call to Actions */
.sidebar-metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: var(--radius-sm);
    color: #25d366;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.sidebar-metric-badge.pulse {
    animation: green-glow-pulse 2s infinite;
}

@keyframes green-glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Telemetry Diagnostics Error Console
   ========================================================================== */
.diagnostic-error-console {
    background: rgba(220, 53, 69, 0.015);
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 12px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(220, 53, 69, 0.05);
}

.diagnostic-error-console::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.diagnostic-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
    padding-bottom: 1rem;
}

.diagnostic-dot {
    width: 10px;
    height: 10px;
    background-color: #dc3545;
    border-radius: 50%;
    box-shadow: 0 0 10px #dc3545;
}

.diagnostic-dot.pulse-red {
    animation: red-glow-pulse 1.5s infinite;
}

@keyframes red-glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.diagnostic-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff808b;
    font-weight: 700;
    font-family: var(--font-head);
}

.diagnostic-error-console p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.terminal-block {
    background: #020409;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #dc3545;
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.75rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #ff808b;
    overflow-x: auto;
}

.diagnostic-steps h5 {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.diagnostic-steps ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.diagnostic-steps li {
    background: transparent !important;
    border: none !important;
    padding: 0.5rem 0 0.5rem 2rem !important;
    margin-bottom: 0.25rem !important;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    position: relative !important;
}

.diagnostic-steps li i {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.1rem !important;
    color: #dc3545 !important;
}

.diagnostic-steps li code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: #fff;
}

/* ==========================================================================
   RankFlow Premium Presentation System (Dynamic Theme Adaptations)
   ========================================================================== */
:root {
    --service-accent: #009ee2;
    --service-accent-light: #33b2e8;
    --service-accent-glow: rgba(0, 158, 226, 0.18);
    --service-accent-glow2: rgba(0, 158, 226, 0.08);
}

.service-hero {
    position: relative;
    text-align: center;
    padding: 120px 5% 90px;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--service-accent-glow) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--service-accent-glow);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--service-accent-light);
    font-weight: 500;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--service-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.service-hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: -2px;
    max-width: 860px;
    margin: 0 auto 24px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.service-hero h1 em {
    font-style: normal;
    color: var(--service-accent);
}

.service-hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.service-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.service-stars {
    color: #FFAA2C;
    font-size: 16px;
    letter-spacing: 2px;
}

.service-arch-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    height: 240px;
    z-index: 1;
}

.service-arch-svg {
    width: 100%;
    height: 100%;
}

/* Brands Bar styling */
.service-brands {
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(10, 15, 36, 0.15);
}

.service-brands-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 64px);
    flex-wrap: wrap;
}

.service-brand-item {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}

.service-brand-item:hover {
    opacity: 1;
    color: #fff;
}

.service-brand-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--service-accent);
    box-shadow: 0 0 8px var(--service-accent);
}

/* Feature 4-Grid styling */
.presentation-section {
    padding: 100px 5%;
    background: #03060f;
}

.presentation-section.alt-bg {
    background: #060913;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.service-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--service-accent);
    margin-bottom: 16px;
    text-align: center;
}

.service-section-title {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #fff;
    font-family: var(--font-head);
}

.service-section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-feature-card {
    background: rgba(10, 15, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.service-feature-card:hover {
    border-color: var(--service-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px var(--service-accent-glow);
    background: rgba(255, 255, 255, 0.03);
}

.service-feat-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--service-accent), rgba(0,0,0,0.5));
    border: 1px solid var(--service-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 20px var(--service-accent-glow);
    transition: transform 0.4s ease;
}

.service-feature-card:hover .service-feat-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
}

.service-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Stat row cards */
.service-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 80px;
}

.service-stat-cell {
    background: rgba(10, 15, 36, 0.6);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.service-stat-num {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    display: block;
}

.service-stat-num span {
    color: var(--service-accent);
}

.service-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* Two-Split Cards */
.service-two-split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.service-split-card {
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.015);
    text-align: left;
}

.service-split-card.featured-card {
    background: linear-gradient(135deg, rgba(10, 15, 36, 0.95) 0%, rgba(20, 25, 46, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

.service-split-card::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--service-accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.service-split-card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--service-accent-light);
    background: var(--service-accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-split-card h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    color: #fff;
    position: relative;
    z-index: 1;
    line-height: 1.25;
    font-family: var(--font-head);
}

.service-split-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-split-card .btn {
    position: relative;
    z-index: 1;
}

/* Service capabilities details checklist */
.service-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 !important;
}

.service-check-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    text-align: left;
}

.service-check-list li::before {
    content: '✓' !important;
    color: var(--service-accent) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
    margin-top: 1px !important;
    position: static !important;
    transform: none !important;
}

.service-check-visual {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

/* Testimonial Block system styling */
.service-testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.service-testimonial-quote {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text);
    max-width: 760px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.service-testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.service-t-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.service-t-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--service-accent-glow);
    border: 1px solid var(--service-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--service-accent-light);
    margin-bottom: 14px;
    font-family: var(--font-head);
}

.service-t-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-t-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.service-t-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* Premium dynamic author node styling */
.testimonial-author-node {
    text-align: center;
    transition: all var(--transition-fast) ease;
}
.testimonial-author-node:not(.active) {
    opacity: 0.45;
}
.testimonial-author-node:not(.active):hover {
    opacity: 0.85;
    transform: translateY(-2px);
}
.testimonial-author-node.active {
    opacity: 1;
}

/* Pricing systems dynamic colors */
.service-pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 52px;
}

.service-toggle-btn {
    padding: 8px 20px;
    border-radius: 7px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-toggle-btn.active {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.service-price-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
}

.service-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.service-price-card.featured {
    border-color: var(--service-accent);
    background: linear-gradient(145deg, rgba(20, 25, 46, 0.8) 0%, rgba(10, 15, 36, 0.8) 100%);
    box-shadow: 0 10px 30px rgba(0, 158, 226, 0.08);
}

.service-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--service-accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 15px var(--service-accent-glow);
}

.service-plan-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-plan-name.accented {
    color: var(--service-accent-light);
    text-shadow: 0 0 10px var(--service-accent-glow);
}

.service-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 8px;
}

.service-price-num {
    font-family: var(--font-head);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
}

.service-price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-price-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-plan-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin: 24px 0;
}

.service-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding: 0 !important;
}

.service-plan-features li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    text-align: left;
}

.service-plan-features li .chk {
    color: var(--service-accent);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Custom bottom calls to action */
.service-cta-section {
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background: #03060f;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.service-cta-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--service-accent-glow) 0%, transparent 65%);
    pointer-events: none;
}

.service-cta-section h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #fff;
    line-height: 1.2;
    font-family: var(--font-head);
}

.service-cta-section h2 em {
    font-style: italic;
    color: var(--service-accent);
}

.service-cta-section p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 36px;
}

@media (max-width: 768px) {
    .service-two-split { grid-template-columns: 1fr; }
    .service-pricing-grid { grid-template-columns: 1fr; }
    .service-stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   PHASE 2.5: ABOUT TECMINION / DIVIDIGITAL PREMIUM STYLES
   ========================================================================== */
.about-orbit-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-center-badge {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(10, 15, 36, 0.85);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: var(--shadow-glow);
}

.about-orbit-ring {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: auto;
}

.about-orbit-ring.ring-1 {
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(0, 158, 226, 0.25);
    animation: spin-clockwise 20s linear infinite;
}

.about-orbit-ring.ring-2 {
    width: 140px;
    height: 140px;
    border: 1px dotted rgba(0, 142, 61, 0.25);
    animation: spin-counter-clockwise 15s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(10, 15, 36, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}

.orbit-node:hover {
    transform: scale(1.25);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    color: var(--accent-primary);
}

.orbit-node.node-a {
    top: -14px;
    left: calc(50% - 14px);
}

.orbit-node.node-b {
    bottom: -14px;
    left: calc(50% - 14px);
}

.orbit-node.node-c {
    left: -14px;
    top: calc(50% - 14px);
}

.orbit-node.node-d {
    right: -14px;
    top: calc(50% - 14px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
    animation: pulse-opacity 1.5s ease-in-out infinite;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ==========================================================================
   PHASE 3.8: WHY CHOOSE US STYLES
   ========================================================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-choose-card {
    background: rgba(10, 15, 36, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    cursor: default;
}

.why-choose-card:hover {
    transform: translateY(-8px);
}

.why-choose-card.card-cyan:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 158, 226, 0.15);
}

.why-choose-card.card-green:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(0, 142, 61, 0.15);
}

.why-choose-card.card-silver:hover {
    border-color: #94a3b8;
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.15);
}

.why-choose-card.card-purple:hover {
    border-color: #a78bfa;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.15);
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-cyan {
    background: rgba(0, 158, 226, 0.08);
    border: 1px solid rgba(0, 158, 226, 0.2);
    color: var(--accent-primary);
}

.icon-green {
    background: rgba(0, 142, 61, 0.08);
    border: 1px solid rgba(0, 142, 61, 0.2);
    color: var(--accent-secondary);
}

.icon-silver {
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

.icon-purple {
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: #a78bfa;
}

.why-choose-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.why-choose-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--text-muted);
}

.why-choose-metric {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.why-choose-card.card-cyan:hover .why-choose-metric { color: var(--accent-primary); }
.why-choose-card.card-green:hover .why-choose-metric { color: var(--accent-secondary); }
.why-choose-card.card-silver:hover .why-choose-metric { color: #fff; }
.why-choose-card.card-purple:hover .why-choose-metric { color: #a78bfa; }

.why-choose-metric::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

/* ==========================================================================
   PHASE 7: PREMIUM CLIENT TESTIMONIALS SLIDER OVERHAUL
   ========================================================================== */
.testimonial-premium-avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-premium-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: #fff;
    z-index: 3;
    box-shadow: var(--shadow-glow);
}

.testimonial-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.testimonial-orbit-ring.ring-clockwise {
    inset: 4px;
    border: 1px dashed rgba(0, 158, 226, 0.3);
    animation: spin-clockwise 10s linear infinite;
}

.testimonial-orbit-ring.ring-counter-clockwise {
    inset: -4px;
    border: 1px dotted rgba(0, 142, 61, 0.3);
    animation: spin-counter-clockwise 15s linear infinite;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-choose-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
}



