/* ERP Solutions Custom Styles */

:root {
    --erp-bg-dark: #120904;
    --erp-orange: #ec6300;
    --erp-orange-glow: rgba(236, 99, 0, 0.4);
    --erp-text-gray: #d1d5db;
    --erp-glass: rgba(255, 255, 255, 0.03);
}

.page-bg {
    background: radial-gradient(circle at 15% 30%, #4a2100 0%, var(--erp-bg-dark) 50%);
    overflow-x: hidden;
}

.status-dots {
    width: 8px;
    height: 8px;
    background: #ff6200;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ff6200;
}

.erp-section {
    position: relative;
    padding: 100px 0;
    /* background: radial-gradient(circle at 15% 30%, #4a2100 0%, var(--erp-bg-dark) 50%); */
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.erp-container {
    padding: 0 15px;
    /* Default for Bootstrap container if not using .container class directly but keeping some styles */
}

@media (max-width: 991px) {
    .erp-content {
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
    }

    .erp-title,
    .erp-subtitle {
        font-size: 3rem;
    }
}

/* Content Side */
.erp-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.erp-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ec6300;
    margin-bottom: 40px;
}

.erp-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--erp-orange);
    border-radius: 50%;
    margin-right: 12px;
}

.erp-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 4px;
}

.erp-subtitle {
    font-family: 'Inknut Antiqua', serif;
    font-size: 4rem;
    line-height: 1;
    color: #ffbb00;
    margin-bottom: 24px;
}

/* NO DIRECT CLASS ON P TAG */
.erp-content p {
    color: var(--erp-text-gray);
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 48px;
    font-family: 'Inter', sans-serif;
}

/* Buttons */
.erp-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 576px) {
    .erp-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-erp-primary,
    .btn-erp-secondary {
        text-align: center;
        justify-content: center;
    }
}

.btn-erp-primary {
    background: var(--erp-orange);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-erp-primary:hover {
    transform: translateY(-2px);
}

.btn-erp-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Social Proof */
.erp-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlapping-circles {
    display: flex;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--erp-bg-dark);
    background: #3a1c00;
}

.circle:nth-child(2) {
    margin-left: -12px;
    background: #5a2c00;
}

.circle:nth-child(3) {
    margin-left: -12px;
    background: #8e4400;
}

.social-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
}

.social-text span {
    color: white;
    font-weight: 800;
}

/* Visual Side - Graph Card */
.health-card {

    /* Background and Shape */
    background-color: #1a1a1a;
    border-radius: 40px;
    /* Rounded corners like the image */
    padding: 20px;

    /* The Glow Effect */
    /* 1. Subtle border to define the edge */
    border: 1px solid rgba(255, 106, 0, 0.2);

    /* 2. Layered shadows for the deep orange glow */
    box-shadow:
        0 0 15px rgba(255, 106, 0, 0.1),
        /* Inner soft glow */
        0 0 40px rgba(255, 106, 0, 0.2),
        /* Mid-range glow */
        0 0 70px rgba(139, 45, 0, 0.3);
    /* Deep outer radiance */

    /* Layout */
    max-width: 475px;
    position: relative;
    overflow: hidden;
}


.graph-card-outer {
    position: relative;
    padding: 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 100px 10px rgba(236, 99, 0, 0.2);

}

.graph-card-inner {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    width: 100%;
    max-width: 650px;
    min-height: 190px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 100px 10px rgba(236, 99, 0, 0.2);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.system-health-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
}

.health-percentage {
    font-size: 32px;
    font-weight: 700;
    margin-top: 4px;
}

.health-change {
    font-size: 14px;
    color: #2dff6a;
    font-weight: 700;
}

.graph-svg-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 150px;
}

.graph-svg-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 201, 255, 0.6));
}

.graph-line {
    fill: none;
    stroke: #00c9ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Styling variables based on your images */
:root {
    --bg-dark: #121212;
    --bg-burgundy: #2a0b0b;
    --orange-primary: #ff6a00;
    --text-muted: #a0a0a0;
    --card-bg: rgba(25, 25, 25, 0.7);
}

.integrated-enterprise-section {
    /* Gradient background from image_f28dc1.png */
    /* background: radial-gradient(circle at 15% 30%, #4a2100 0%, var(--erp-bg-dark) 50%); */

    min-height: 80vh;
}

.serif-font {
    font-family: 'Playfair Display', serif;
    /* Or any premium serif font */
    font-weight: 500;
}

.text-orange-header {
    color: var(--orange-primary);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.text-orange {
    color: var(--orange-primary);
}

.text-gray-muted {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.lead-text {
    max-width: 700px;
}

/* Card Styling */
.enterprise-integrated-card {
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* border-radius: 24px; */
    padding: 60px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .enterprise-integrated-card {
        padding: 30px 15px;
        margin: 0 -15px;
    }
}

.enterprise-card {
    background-color: #181b1a;

    /* background: transparent; */
    /* Making inner cards transparent since they are inside the main card */
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 106, 0, 0.05);
}

/* Icon Box styling from image_be814f.png */
.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon {
    font-size: 1.5rem;
    filter: sepia(100%) saturate(300%) hue-rotate(-15deg);
}


.cta-link {
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.8;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }
}



.integrated-enterprise-section h2 {
    font-family: "Inknut Antiqua", serif !important;
}

.integrated-enterprise-section h6 {
    font-family: "Inter";
}

:root {
    --brand-dark: #1e1612;
    /* Deep brown from image */
    --brand-orange: #f97316;
    --text-muted: #9ca3af;
}

.data-organized-section {
    /* background-color: var(--brand-dark); */
    font-family: 'Inter', sans-serif;
}

.text-orange {
    color: var(--brand-orange);
}

.text-gray-muted {
    color: var(--text-muted);
}

/* Feature Checkmarks */
.icon-circle {
    width: 20px;
    height: 20px;
    background-color: var(--brand-orange);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.badge-live {
    background: rgba(243, 167, 167, 0);
    color: #ff623a;
    border: 1px solid #ff623a;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 4px;
}

/* Simulated Chart Styling */
.chart-container {
    height: 150px;
}

.chart-bar {
    width: 22%;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.chart-bar.active {
    background: rgba(249, 115, 22, 0.4);
    border-color: var(--brand-orange);
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
}

.security-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}