/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    /* Black & Magenta Theme */
    --primary-color: #000000;        /* Black - Primary */
    --secondary-color: #B800B8;      /* Magenta - Secondary */
    --accent-color: #000000;         /* Black accent */
    --dark-bg-primary: #000000;      /* Black - Primary BG */
    --dark-bg-secondary: #1A2350;    /* Slightly lighter Navy - Secondary BG */
    --dark-bg-tertiary: #202845;     /* Medium Navy - Cards */
    --dark-bg-quaternary: #2A3560;   /* Lighter Navy - Lighter elements */
    --text-dark: #000000;            /* Black text for light backgrounds */
    --text-light: #666666;           /* Gray text */
    --text-lighter: #FFFFFF;         /* Pure white text */
    --background: #FFFFFF;
    --background-light: #F5F5F5;     /* Light gray */
    --background-dark: #000000;      /* Black background */
    --border-color: #2A3560;         /* Navy border */
    --border-light: #3A4570;         /* Lighter Navy border */

    /* Spacing */
    --spacing-sm: 32px;              /* 32px - Small */
    --spacing-md: 80px;              /* 80px - Medium */
    --spacing-lg: 96px;              /* 96px - Large */
    --spacing-xl: 160px;             /* 160px - Extra Large */
    --spacing-xxl: 240px;            /* 240px - XXL */

    /* Typography - Roboto */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    /* Shadows - Enhanced for depth */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Base Styles
   =========================== */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
}

/* Enhanced Section Spacing - TigerBond Style */
section {
    padding: var(--spacing-lg) 0;
}

section.py-5 {
    padding: var(--spacing-xl) 0 !important;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand img {
    margin-top: -21px;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.btn {
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Hero Section - Accenture Style
   =========================== */
.hero-section-static {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    margin-top: 0;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-lighter);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid rgba(178, 47, 47, 0.815);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: none;
}

.btn-primary {
    /* background: linear-gradient(90deg, #0080FF 0%, #00D4FF 50%, #00FF88 100%); */
    background-color:#902683;
    border: none;
    color: white;
}

.btn-primary:hover {
    background: #902683;
    border: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 98, 226, 0.5);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ===========================
   Cards
   =========================== */
.card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.impact-card {
    padding: 1.5rem;
}

.impact-card .impact-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
}

.service-icon img {
    max-width: 100%;
    filter: brightness(0) invert(1);
}

.service-result {
    padding: 1rem;
    background: var(--background-light);
    border-radius: 6px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.package-card {
    transition: all 0.3s ease;
}

.package-featured {
    transform: scale(1.05);
    border-width: 2px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

.package-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.testimonial-card {
    background: var(--background);
}

/* ===========================
   Tables
   =========================== */
.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: var(--background-light);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ===========================
   Page Headers
   =========================== */
.page-header {
    background: var(--primary-color);
    padding: 4rem 0;
}

/* ===========================
   Forms
   =========================== */
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}

.form-check-input {
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}

/* ===========================
   Contact Info
   =========================== */
.contact-info-item {
    padding: 1rem 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* ===========================
   Accordion
   =========================== */
.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* ===========================
   Footer - Full Black Theme
   =========================== */
footer {
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5,
footer h6 {
    color: white !important;
    font-weight: 700;
}

footer p {
    color: rgba(255, 255, 255, 0.6) !important;
}

footer a {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6) !important;
}

footer a:hover {
    color: #00D4FF !important;
    transform: translateX(3px);
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

footer .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===========================
   Utilities
   =========================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* ===========================
   Responsive Overrides
   =========================== */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 500px;
    }

    .hero-content {
        padding: var(--spacing-md) 0;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .display-3 {
        font-size: 2.2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 450px;
    }

    .hero-cta-box {
        margin-top: -60px !important;
        padding: 1.5rem;
    }

    .display-2 {
        font-size: 2rem;
    }

    .display-3 {
        font-size: 1.8rem;
    }

    .display-4 {
        font-size: 1.6rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .package-featured {
        transform: scale(1);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .page-header {
        padding: 3rem 0;
    }
}

@media (max-width: 575px) {
    .hero-slide {
        min-height: 400px;
    }

    .display-2 {
        font-size: 1.75rem;
    }

    .hero-cta-box {
        margin-top: -40px !important;
        padding: 1rem;
    }

    .impact-card .impact-icon {
        font-size: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===========================
   Particle Effect - 3D Cube Animation (Enlarged)
   =========================== */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 800px;
    overflow: hidden;
    z-index: 1;
}

.particle-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -300px;
    width: 600px;
    height: 600px;
    transform-style: preserve-3d;
    transform-origin: 300px 300px;
    animation: spinCube 12000ms linear infinite;
}

.particle-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
}

.particle-dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(161, 0, 255, 0.4);
}

/* Dot positions - 3x3 grid */
.particle-dot.p1 { top: -2px; left: -2px; }
.particle-dot.p2 { top: -2px; left: 50%; margin-left: -2px; }
.particle-dot.p3 { top: -2px; left: 100%; margin-left: -2px; }
.particle-dot.p4 { top: 50%; left: -2px; margin-top: -2px; }
.particle-dot.p5 { top: 50%; left: 50%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p6 { top: 50%; left: 100%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p7 { top: 100%; left: 0%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p8 { top: 100%; left: 50%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p9 { top: 100%; left: 100%; margin-top: -2px; margin-left: -2px; }

/* Dot positions - 2x2 grid */
.particle-dot.p10 { top: 25%; left: 25%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p11 { top: 25%; left: 75%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p12 { top: 75%; left: 25%; margin-top: -2px; margin-left: -2px; }
.particle-dot.p13 { top: 75%; left: 75%; margin-top: -2px; margin-left: -2px; }

/* Face depth positions - Enlarged spacing */
.particle-face.f1 { transform: translateZ(-300px); animation-delay: 0.3s; }
.particle-face.f2 { transform: translateZ(-240px); animation-delay: 0.6s; }
.particle-face.f3 { transform: translateZ(-180px); animation-delay: 0.9s; }
.particle-face.f4 { transform: translateZ(-120px); animation-delay: 1.2s; }
.particle-face.f5 { transform: translateZ(-60px); animation-delay: 1.5s; }
.particle-face.f6 { transform: translateZ(0px); animation-delay: 1.8s; }
.particle-face.f7 { transform: translateZ(60px); animation-delay: 2.1s; }
.particle-face.f8 { transform: translateZ(120px); animation-delay: 2.4s; }
.particle-face.f9 { transform: translateZ(180px); animation-delay: 2.7s; }
.particle-face.f10 { transform: translateZ(240px); animation-delay: 3.0s; }
.particle-face.f11 { transform: translateZ(300px); animation-delay: 3.3s; }

@keyframes spinCube {
    0% {
        transform: rotateY(0deg) rotateX(-45deg) rotate(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(135deg) rotate(180deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(315deg) rotate(360deg);
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #000000;
    color: white;
}

/* ===========================
   Accent Color Enhancements
   =========================== */
/* Add subtle accent color highlights */
.bg-light {
    /* background-color: #f8fdf9 !important; */
    background-color: #efefefab !important;
}

/* Accent borders and highlights */
.service-result {
    border-left-color: var(--accent-color) !important;
    background: rgba(0, 0, 0, 0.05);
}

/* Enhanced service icon */
.service-icon {
    background: var(--primary-color);
}

/* Table header accent */
.table thead th {
    border-bottom-color: var(--primary-color);
    background: #fafafa;
}

/* Card hover effects with accent glow */
.card:hover {
    border-color: var(--accent-color) !important;
}

/* Page header update */
.page-header {
    background: var(--primary-color);
}

/* ===========================
   Client Logo Carousel
   =========================== */
.client-logos-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.client-logos-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logo-item {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.client-logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animated scrolling version (optional) */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logos-track.animate-scroll {
    flex-wrap: nowrap;
    animation: scroll-logos 30s linear infinite;
}

.client-logos-track.animate-scroll:hover {
    animation-play-state: paused;
}

/* ===========================
   Command Framework Section
   =========================== */
.command-framework-section {
    background: #F8FAFC;
    padding: var(--spacing-xl) 0;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.framework-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-text h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.framework-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.framework-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.framework-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.framework-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.framework-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===========================
   Modern Impact Section
   =========================== */
.impact-section-dark {
    background: var(--secondary-color);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.impact-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.modern-impact-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-impact-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.impact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.impact-card-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-card-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
}

.impact-card-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-impact-card:hover .impact-card-glow {
    opacity: 1;
}

/* Metrics Comparison Cards */
.metrics-comparison-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.metric-bar-item {
    margin-bottom: 2rem;
}

.metric-bar-item:last-child {
    margin-bottom: 0;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-bar-before,
.metric-bar-after {
    position: relative;
}

.metric-bar-before span,
.metric-bar-after span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.metric-bar-before span {
    color: rgba(255, 255, 255, 0.5);
}

.metric-bar-after span {
    color: var(--accent-color);
}

.metric-bar-before .bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: width 1s ease;
}

.metric-bar-after .bar {
    height: 10px;
    background: var(--accent-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: width 1s ease;
}

/* ===========================
   Three Forces Section
   =========================== */
.three-forces-section {
    background: #FFFFFF;
    padding: var(--spacing-xl) 0;
}

.force-card {
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.force-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.force-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.force-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.force-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.force-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.force-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.force-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.force-result {
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
    font-size: 1rem;
}

.force-result strong {
    color: var(--primary-color);
}

.force-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.force-icon-large {
    font-size: 12rem;
    line-height: 1;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    animation: float 3s ease-in-out infinite;
}

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

/* ===========================
   TigerBond-Style Dark Sections
   =========================== */
.bg-dark-custom {
    background-color: var(--secondary-color) !important;
    color: white;
}

.bg-dark-custom h1,
.bg-dark-custom h2,
.bg-dark-custom h3,
.bg-dark-custom h4,
.bg-dark-custom h5,
.bg-dark-custom h6 {
    color: white;
}

.bg-dark-custom .lead,
.bg-dark-custom p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-dark-custom .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Premium dark section */
.section-dark-premium {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.section-dark-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* ===========================
   NEW REDESIGNED SECTIONS
   =========================== */

/* Section Badges and Headings */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subheading {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Command Framework Section - Accenture Black Style */
.command-framework-section-new {
    padding: var(--spacing-xl) 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.command-framework-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.command-framework-section-new .container {
    position: relative;
    z-index: 2;
}

.framework-pillar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.framework-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.framework-pillar-card:hover {
    transform: translateY(-24px);
    /* border-color: var(--primary-color); */ 
    /* background: rgba(255, 255, 255, 0.08); */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.pillar-icon-wrapper {
    margin-bottom: 1.5rem;
}
.startup-icon-wrapper {
    margin-bottom: 1.5rem;
}

.pillar-icon {
    font-size: 4rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.pillar-icon-img {
    width: 4rem;
    height: 4rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.sprint-icon-img {
    width: 3rem;
    height: 3rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}


.framework-pillar-card:hover .pillar-icon,
.framework-pillar-card:hover .pillar-icon-img {
    transform: scale(1.3) rotate(8deg);
}

.impact-metric-card:hover .pillar-icon,
.impact-metric-card:hover .pillar-icon-img {
    transform: scale(1.3) rotate(8deg);
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.pillar-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
}

.framework-timeline-card {
    background: var(--dark-bg-primary);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.timeline-stat {
    padding: 1.5rem;
}

.timeline-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-label {
    color: var(--text-lighter);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Impact Section - Accenture Black Style */
.impact-section-new {
    padding: var(--spacing-xl) 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.impact-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.section-badge-light {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-heading-light {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subheading-light {
    font-size: 1.25rem;
    color: var(--text-lighter);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Impact Metric Cards - Fun & Modern */
.impact-metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.impact-metric-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-metric-card:hover::before {
    opacity: 1;
}

/* .impact-metric-card:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
} */

.metric-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.impact-metric-card:hover .metric-icon-circle {
    transform: rotate(360deg) scale(1.1);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 900;
    /* background: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F0ABFC 100%); */
    background: linear-gradient(29deg, #4700ff 0%, #ff3398 50%, #0e0e6bf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 12px rgba(236, 72, 153, 0.3));
}

.metric-label {
    color: var(--text-lighter);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.metric-sparkline {
    height: 3px;
    background: var(--accent-color);
    border-radius: 10px;
    margin-top: 1.5rem;
    opacity: 0.6;
}

/* ===========================
   Compact Comparison Card - New Design
   =========================== */
.compact-comparison-card {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9)),
        url(../images/back3.svg);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.comparison-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-main-title {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #0080FF 0%, #00D4FF 50%, #00FF88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.comparison-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto 1fr 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(8px);
}

.metric-label-col {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
}

.metric-name {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.metric-before-col {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.metric-arrow-col {
    color: #00D4FF;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.metric-after-col {
    background: linear-gradient(135deg, #0080FF, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 900;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.metric-change-col {
    color: #00FF88;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    white-space: nowrap;
}

/* Responsive Design for Compact Comparison */
@media (max-width: 991px) {
    .compact-comparison-card {
        padding: 2.5rem 2rem;
    }

    .comparison-main-title {
        font-size: 1.75rem;
    }

    .comparison-row {
        grid-template-columns: 2fr 1fr auto 1fr 1fr;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

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

    .metric-name {
        font-size: 0.95rem;
    }

    .metric-before-col,
    .metric-after-col {
        font-size: 1.25rem;
    }

    .metric-arrow-col {
        font-size: 1.25rem;
    }

    .metric-change-col {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 767px) {
    .compact-comparison-card {
        padding: 2rem 1.5rem;
    }

    .comparison-main-title {
        font-size: 1.5rem;
    }

    .comparison-subtitle {
        font-size: 0.85rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .metric-label-col {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .metric-before-col,
    .metric-after-col,
    .metric-arrow-col,
    .metric-change-col {
        justify-self: center;
    }

    .metric-arrow-col {
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
    }

    .comparison-row:hover {
        transform: translateX(0);
        transform: translateY(-4px);
    }
}

/* Three Forces Section - Black Theme Design */
.three-forces-section-new {
    padding: var(--spacing-xl) 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.three-forces-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.force-card-new {
    background: white;
    border-radius: 32px;
    padding: 3.5rem 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* .force-image {
    width: 400px;
    height: 400px;
} */

.force-card-alt {
    background: #F8FAFC;
}


.force-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    /* border: 2px solid rgba(254, 254, 254, 0.309); */
    /* border-color: rgba(0, 0, 0, 0.4); */
    /* border-color: rgba(254, 254, 254, 0.309); */
}

.force-visual-new {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-height: 300px;
}

.force-number-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0080FF, #00D4FF);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.4);
}

.force-icon-xl {
    font-size: 10rem;
    line-height: 1;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.1));
    animation: float-gentle 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.force-icon-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float-gentle 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.force-icon-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.force-visual-bg {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.03); */
    z-index: 1;
}

.force-content-new {
    padding: 1.5rem 0;
}

.force-heading {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.force-tagline {
    font-size: 1.15rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.force-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.force-features-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.force-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    /* background: linear-gradient(135deg, #0080FF, #00D4FF); */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    background: #2d0d46c2;
}

.force-outcome {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.force-outcome strong {
    color: #5d1e8f;
    font-weight: 700;
}

/* Diagnostic Sprint Section - Accenture Black Style */
.diagnostic-sprint-section-new {
    padding: var(--spacing-xl) 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.diagnostic-sprint-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.diagnostic-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.diagnostic-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.diagnostic-heading {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.diagnostic-desc {
    font-size: 1.2rem;
    color: var(--text-lighter);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.diagnostic-features-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.diag-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.diag-feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.diag-feature-item:hover .sprint-icon-img{
    transform: scale(1.3) rotate(8deg);
}

.diag-icon-new {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.diag-text {
    flex: 1;
}

.diag-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.diag-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

.diagnostic-timeline-new {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.step-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(151deg, #4700ff73 0%, #ff3398ba 50%, #0e0e6b99);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 1rem;
    color: var(--text-light);
}

.timeline-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(53deg, #ff00ea 0%, #ff3398 50%, #0e0e6b);
    margin-left: 28px;
    opacity: 0.3;
}

/* Packages Section - Accenture Black Style */
.packages-section-new {
    padding: var(--spacing-xl) 0;
    background: #000000;
    position: relative;
}

.package-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* .package-card-new:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color); 
    background: rgba(255, 255, 255, 0.08); 
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
} */

.package-header-new {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.package-header-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* height: 5px; */
    /* background: var(--primary-color); */
    /* background: rgba(45, 13, 70, 0.76); */
}

.package-level {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.package-name {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-body-new {
    padding: 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.package-features-new li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-lighter);
    line-height: 1.6;
}

.package-features-new li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.package-ideal {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.package-ideal em {
    color: var(--text-lighter);
    font-size: 0.95rem;
    font-style: normal;
}

.package-footer-new {
    padding: 0 2.5rem 3rem;
}

.package-footer-new .btn {
    border: 2px solid #C0C0C0 !important;
    transition: all 0.3s ease;
    width: auto !important;
    display: inline-block !important;
    padding: 0.75rem 2rem !important;
}

.package-footer-new .btn:hover {
    border-color: #E8E8E8 !important;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.package-footer-new {
    text-align: center;
}

.package-card-featured {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.package-card-featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
}

.package-card-featured:hover {
    transform: scale(1.15) translateY(-16px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Rounded Buttons - Global Update */
.btn {
    border-radius: 100px !important;
}

.btn-lg {
    border-radius: 100px !important;
}

.btn-sm {
    border-radius: 100px !important;
}

/* ===========================
   Enhanced Responsive Styles
   =========================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-heading,
    .section-heading-light {
        font-size: 2.25rem;
    }

    .diagnostic-heading {
        font-size: 2.5rem;
    }

    .force-heading {
        font-size: 1.85rem;
    }

    .force-icon-xl {
        font-size: 8rem;
    }

    .force-icon-image {
        width: 280px;
        height: 280px;
    }

    .package-card-featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-lg: 4rem;
        --spacing-xl: 6rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    /* Particle effect - smaller on mobile */
    .particle-cube {
        width: 350px;
        height: 350px;
        margin-top: -175px;
        margin-left: -175px;
        transform-origin: 175px 175px;
    }

    .particle-face {
        width: 350px;
        height: 350px;
    }

    .particle-dot {
        width: 3px;
        height: 3px;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.7), 0 0 12px rgba(161, 0, 255, 0.3);
    }

    .particle-face.f1 { transform: translateZ(-175px); }
    .particle-face.f2 { transform: translateZ(-140px); }
    .particle-face.f3 { transform: translateZ(-105px); }
    .particle-face.f4 { transform: translateZ(-70px); }
    .particle-face.f5 { transform: translateZ(-35px); }
    .particle-face.f6 { transform: translateZ(0px); }
    .particle-face.f7 { transform: translateZ(35px); }
    .particle-face.f8 { transform: translateZ(70px); }
    .particle-face.f9 { transform: translateZ(105px); }
    .particle-face.f10 { transform: translateZ(140px); }
    .particle-face.f11 { transform: translateZ(175px); }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .section-heading,
    .section-heading-light {
        font-size: 1.85rem;
    }

    .section-subheading,
    .section-subheading-light {
        font-size: 1.05rem;
    }

    .framework-pillar-card {
        padding: 2.5rem 1.5rem;
    }

    .pillar-icon {
        font-size: 3rem;
    }

    .pillar-title {
        font-size: 1.5rem;
    }

    .impact-metric-card {
        padding: 2rem 1.5rem;
    }

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

    .metric-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .metrics-grid-card {
        padding: 2rem 1.5rem;
    }

    .metrics-grid-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .comparison-metric {
        padding: 1.5rem;
    }

    .comparison-values {
        flex-direction: column;
        gap: 1.5rem;
    }

    .arrow-indicator {
        transform: rotate(90deg);
    }

    .force-card-new {
        padding: 2.5rem 2rem;
    }

    .force-visual-new {
        padding: 2rem;
        min-height: 250px;
    }

    .force-icon-xl {
        font-size: 6rem;
    }

    .force-icon-image {
        width: 210px;
        height: 210px;
    }

    .force-number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        top: 1rem;
        left: 1rem;
    }

    .force-heading {
        font-size: 1.65rem;
    }

    .force-tagline {
        font-size: 1rem;
    }

    .force-desc {
        font-size: 1rem;
    }

    .diagnostic-card-new {
        padding: 3rem 2rem;
    }

    .diagnostic-heading {
        font-size: 2rem;
    }

    .diagnostic-desc {
        font-size: 1.05rem;
    }

    .diagnostic-timeline-new {
        padding: 1rem;
    }

    .step-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .timeline-connector {
        margin-left: 23px;
    }

    .package-card-new {
        margin-bottom: 1.5rem;
    }

    .package-header-new {
        padding: 2.5rem 2rem 1.5rem;
    }

    .package-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-heading,
    .section-heading-light {
        font-size: 1.6rem;
    }

    .framework-pillar-card {
        padding: 2rem 1.25rem;
    }

    .diagnostic-card-new {
        padding: 2rem 1.5rem;
    }

    .force-card-new {
        padding: 2rem 1.5rem;
    }

    .force-icon-image {
        width: 180px;
        height: 180px;
    }

    .package-header-new {
        padding: 2rem 1.5rem 1.5rem;
    }

    .package-body-new {
        padding: 1.5rem 1.5rem;
    }

    .package-footer-new {
        padding: 0 1.5rem 2rem;
    }
}

/* ===========================
   NEW HEADER & HERO DESIGN
   =========================== */

/* Modern Header Styles */
.main-header {
    background: transparent;
    position: relative;
    z-index: 1000;
}

.main-header .navbar {
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.main-header .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    letter-spacing: 0.5px;
}

.main-header .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.main-header .nav-link:hover {
    color: white !important;
}

.main-header .dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.main-header .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.main-header .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-header {
    padding: 0.6rem 1.8rem !important;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: white;
    color: #000000 !important;
    transform: translateY(-2px);
}

/* New Hero Section Styles */
.hero-section-new {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    padding: 8rem 0 6rem;
}

.hero-background-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}

.hero-content-wrapper-new {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title-new {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-highlight {
    background: linear-gradient(90deg,
        #af1e9d 0%,
        #c557d3 50%,
        #073ee7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description-new {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: #902683;
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 128, 255, 0.4);
}

.btn-primary-hero:hover {
    background: #902683;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 153, 249, 0.5);
    color: white;
}

.btn-secondary-hero {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    color: white;
    transform: translateX(5px);
}

/* Responsive Styles for New Design */
@media (max-width: 991px) {
    .hero-title-new {
        font-size: 3rem;
    }

    .hero-description-new {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .hero-section-new {
        min-height: 70vh;
        padding: 6rem 0 4rem;
    }

    .hero-title-new {
        font-size: 2.25rem;
    }

    .hero-description-new {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .hero-title-new {
        font-size: 1.85rem;
    }

    .hero-description-new {
        font-size: 0.95rem;
    }
}

/* ===========================
   WAVE PATTERN CARD DESIGNS
   =========================== */

/* Wave Pattern Backgrounds - SVG Data URIs */
.wave-card-1 {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,500 Q250,300 500,500 T1000,500 L1000,1000 L0,1000 Z' fill='rgba(255,255,255,0.03)'/%3E%3Cpath d='M0,600 Q250,400 500,600 T1000,600 L1000,1000 L0,1000 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.wave-card-2 {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,400 Q200,200 400,400 T800,400 T1200,400 L1200,1000 L0,1000 Z' fill='rgba(255,255,255,0.04)'/%3E%3Cpath d='M0,550 Q200,350 400,550 T800,550 T1200,550 L1200,1000 L0,1000 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.wave-card-3 {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,450 C200,350 300,550 500,450 S800,350 1000,450 L1000,1000 L0,1000 Z' fill='rgba(255,255,255,0.035)'/%3E%3Cpath d='M0,600 C200,500 300,700 500,600 S800,500 1000,600 L1000,1000 L0,1000 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.wave-card-light-1 {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01)),
        url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,500 Q250,300 500,500 T1000,500 L1000,1000 L0,1000 Z' fill='rgba(0,0,0,0.03)'/%3E%3Cpath d='M0,600 Q250,400 500,600 T1000,600 L1000,1000 L0,1000 Z' fill='rgba(0,0,0,0.015)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-color: white;
}

.wave-card-light-2 {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01)),
        url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,400 Q200,200 400,400 T800,400 T1200,400 L1200,1000 L0,1000 Z' fill='rgba(0,0,0,0.04)'/%3E%3Cpath d='M0,550 Q200,350 400,550 T800,550 T1200,550 L1200,1000 L0,1000 Z' fill='rgba(0,0,0,0.02)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-color: white;
}

.wave-card-light-3 {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01)),
        url("data:image/svg+xml,%3Csvg width='1000' height='1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,450 C200,350 300,550 500,450 S800,350 1000,450 L1000,1000 L0,1000 Z' fill='rgba(0,0,0,0.035)'/%3E%3Cpath d='M0,600 C200,500 300,700 500,600 S800,500 1000,600 L1000,1000 L0,1000 Z' fill='rgba(0,0,0,0.018)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-color: white;
}

/* Enhanced Card Styles with Sharp Edges */
.sharp-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.sharp-card-light {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Apply topographic pattern to existing cards */
.framework-pillar-card {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('../images/cards_back.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.framework-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.framework-pillar-card > * {
    position: relative;
    z-index: 1;
}

/* Impact Metric Cards with Topographic Pattern */
.impact-metric-card {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('../images/cards_back.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.impact-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.impact-metric-card:hover::before {
    background: rgba(0, 5, 10, 0.364);
    
}

.impact-metric-card:hover{
cursor: pointer;
transform: scale(1);
}


.impact-metric-card > * {
    position: relative;
    z-index: 1;
}

/* Force Cards with Topographic Pattern - Black Theme */
.force-card-new {
    /* background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('../../background2.svg'); */
    background: linear-gradient(135deg, rgb(0 0 0), rgb(0 0 0 / 80%)), url(../images/back4.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 3.5rem 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(254, 254, 254, 0.092);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.force-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

/* .force-card-new:hover::before {
    background: rgba(0, 128, 255, 0.1);
} */

.force-card-new > * {
    position: relative;
    z-index: 1;
}

.force-card-alt::after {
    background: url("data:image/svg+xml,%3Csvg width='1000' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,200 C200,100 300,300 500,200 S800,100 1000,200 L1000,400 L0,400 Z' fill='rgba(0,0,0,0.03)'/%3E%3Cpath d='M0,300 C200,200 300,400 500,300 S800,200 1000,300 L1000,400 L0,400 Z' fill='rgba(0,0,0,0.015)'/%3E%3C/svg%3E");
}

/* Package Cards with Topographic Pattern */
.package-card-new {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('../images/cards_back.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.package-card-new:hover::before {
    background: rgba(0, 5, 10, 0.364);
}

.package-card-new > * {
    position: relative;
    z-index: 1;
}

/* Diagnostic Card with Topographic Pattern */
.diagnostic-card-new {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('../images/cards_back.jpg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.diagnostic-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.diagnostic-card-new > * {
    position: relative;
    z-index: 1;
}

.cta-p{
    font-size: 20px;
}
