:root {
    --primary: #197B82;
    --primary-dark: #145f64;
    --primary-light: #1a8f97;
    --accent: #e3ca91;
    --accent-dark: #d4b76d;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
}

/* ===== ENTERPRISE PAGE STYLES ===== */
.enterprise-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.enterprise-page * {
    box-sizing: border-box;
}

/* Hero Section */
.ent-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at top left, rgba(25, 123, 130, 0.6), transparent 50%),
        radial-gradient(ellipse at top right, rgba(227, 202, 145, 0.4), transparent 50%),
        radial-gradient(ellipse at center right, rgba(25, 123, 130, 0.3), transparent 50%),
        radial-gradient(ellipse at center left, rgba(227, 202, 145, 0.25), transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(25, 123, 130, 0.4), transparent 60%);
    background-color: var(--dark);
    overflow: hidden;
}

.ent-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(227, 202, 145, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(25, 123, 130, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

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

.ent-hero-content {
    padding: 80px 0 80px;
    position: relative;
    z-index: 2;
}

.ent-hero-content .col-lg-6:first-child {
    max-width: 50%;
}

.ent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 202, 145, 0.15);
    border: 1px solid rgba(227, 202, 145, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.ent-badge i {
    font-size: 14px;
}

.ent-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-size:50px
}

.ent-hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #f0dba8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ent-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 16px;
}

.ent-hero-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.ent-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ent-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ent-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(227, 202, 145, 0.3);
}

.ent-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 202, 145, 0.4);
    color: var(--dark);
    text-decoration: none;
}

.ent-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ent-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.ent-hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

.ent-hero-image img {
    width: 100%;
    border-radius: 16px 0 0 16px;
    box-shadow: -30px 40px 100px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.ent-hero-image:hover img {
    transform: scale(1.02);
}

.ent-hero-float {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ent-hero-float.float-1 {
    top: 15%;
    left: 5%;
    animation: entFloat 6s ease-in-out infinite;
}

.ent-hero-float.float-2 {
    bottom: 20%;
    left: 10%;
    animation: entFloat 6s ease-in-out infinite 1s;
}

.ent-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ent-float-icon.teal {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}

.ent-float-icon.gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
}

.ent-float-text {
    font-size: 13px;
    color: var(--gray);
}

.ent-float-text strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
}

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

/* Section Styles */
.ent-section {
    padding: 80px 0;
    position: relative;
}

.ent-section-white {
    background: #fff;
}

.ent-section-light {
    background: linear-gradient(180deg, #f8fafa 0%, #f0f5f5 100%);
}

.ent-section-teal {
    background: linear-gradient(180deg, rgba(25, 123, 130, 0.06) 0%, rgba(25, 123, 130, 0.02) 100%);
}

/* .ent-section-gold {
    background: linear-gradient(180deg, rgba(227, 202, 145, 0.12) 0%, rgba(227, 202, 145, 0.04) 100%);
} */

.ent-section-dark {
    background: linear-gradient(180deg, var(--dark) 0%, #0f0f1a 100%);
    position: relative;
}

.ent-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top right, rgba(25, 123, 130, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(227, 202, 145, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ent-section-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.ent-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.ent-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(25, 123, 130, 0.1);
    border-radius: 20px;
}

.ent-section-dark .ent-section-label {
    color: var(--accent);
    background: rgba(227, 202, 145, 0.15);
}

.ent-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ent-section-dark .ent-section-title {
    color: #fff;
}

.ent-section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.ent-section-dark .ent-section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Business Challenge Section */
.ent-challenge-section {
    /* background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%); */
    position: relative;
    overflow: hidden;
}

.ent-challenge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(25, 123, 130, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ent-challenge-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ent-challenge-header .ent-section-label {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.ent-challenge-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.ent-challenge-header > p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.ent-challenge-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.ent-challenge-card {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(231, 76, 60, 0.16);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ent-challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c 0%, #ff6b6b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ent-challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.12);
    border-color: rgba(231, 76, 60, 0.25);
}

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

.ent-challenge-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.12) 0%, rgba(231, 76, 60, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e74c3c;
    margin: 0 auto 20px;
}

.ent-challenge-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.ent-challenge-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.ent-challenge-quote {
    text-align: center;
    margin-top: 50px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(25, 123, 130, 0.08) 0%, rgba(25, 123, 130, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(25, 123, 130, 0.15);
    position: relative;
    z-index: 1;
}

.ent-challenge-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 4rem;
    color: rgba(25, 123, 130, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.ent-challenge-quote p {
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Solution Section - Light with Extended Image */
.ent-solution-section {
    background: linear-gradient(180deg, rgb(230 197 122 / 10%) 0%, rgb(227 202 145 / 23%) 100%);
    position: relative;
    overflow: hidden;
}

.ent-solution-wrapper {
    position: relative;
}

.ent-solution-image-extended {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

.ent-solution-image-extended img {
    width: 100%;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.ent-solution-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 550px;
    position: relative;
    z-index: 2;
}

.ent-solution-text {
    width: 48%;
    padding-left: 30px;
}

.ent-solution-text .ent-section-label {
    background: rgba(25, 123, 130, 0.1);
    color: var(--primary);
}

.ent-solution-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ent-solution-text > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.ent-solution-highlights {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(25, 123, 130, 0.12);
    border-radius: 16px;
    padding: 24px;
}

.ent-solution-highlights h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.ent-solution-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ent-solution-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(25, 123, 130, 0.08);
}

.ent-solution-highlights li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ent-solution-highlights li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 3px 10px rgba(25, 123, 130, 0.25);
}

/* Core Capabilities Section */
.ent-capabilities-header {
    text-align: center;
    padding: 80px 0 30px;
    background: linear-gradient(180deg, #f8fafa 0%, #fff 100%);
    position: relative;
}

/* .ent-capabilities-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
} */

.ent-capabilities-header .ent-section-label {
    color: var(--primary);
    background: rgba(25, 123, 130, 0.1);
}

.ent-capabilities-header .ent-section-title {
    margin-bottom: 15px;
    color: var(--dark);
}

.ent-capabilities-header .ent-section-desc {
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

/* Feature Sections */
.ent-feature {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.ent-feature:nth-child(even) {
    background: #fff;
}

.ent-feature:nth-child(odd) {
    background: linear-gradient(180deg, #f8fafa 0%, #f2f6f6 100%);
}

.ent-feature:nth-child(4n+3) {
    background: linear-gradient(180deg, rgba(25, 123, 130, 0.04) 0%, rgba(25, 123, 130, 0.01) 100%);
}

.ent-feature:nth-child(4n) {
    background: linear-gradient(180deg, rgba(227, 202, 145, 0.08) 0%, rgba(227, 202, 145, 0.02) 100%);
}

.ent-feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ent-feature:nth-child(even) .ent-feature-content {
    flex-direction: row-reverse;
}

.ent-feature-text {
    flex: 1;
}

.ent-feature-visual {
    flex: 1.2;
    position: relative;
}

.ent-feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(25, 123, 130, 0.08);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.ent-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.ent-feature-label i {
    font-size: 14px;
    color: var(--accent);
}

.ent-feature h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.ent-feature-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.ent-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

.ent-feature-list li:last-child {
    border-bottom: none;
}

.ent-feature-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ent-feature-image {
    position: relative;
}

.ent-feature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ent-feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent);
    border-radius: 16px;
    opacity: 0.3;
    z-index: -1;
}

/* Dashboard Experience Section */
.ent-dashboard-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ent-dashboard-visual {
    flex: 1.3;
    position: relative;
}

.ent-dashboard-image {
    position: relative;
}

.ent-dashboard-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.ent-dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(25, 123, 130, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.ent-dashboard-text {
    flex: 1;
}

.ent-dashboard-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ent-dashboard-text > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ent-dashboard-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ent-dashboard-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8fafa 100%);
    border: 1px solid rgba(25, 123, 130, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ent-dashboard-highlight:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(25, 123, 130, 0.12);
    border-color: var(--primary);
}

.ent-dashboard-highlight i {
    font-size: 20px;
    color: var(--primary);
}

.ent-dashboard-highlight span {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

/* Business Impact Section */
.ent-impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ent-impact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(227, 202, 145, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ent-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ent-impact-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-5px);
    border-color: rgba(227, 202, 145, 0.3);
}

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

.ent-impact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(227, 202, 145, 0.25);
}

.ent-impact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.ent-impact-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.ent-impact-note {
    text-align: center;
    margin-top: 40px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(227, 202, 145, 0.12) 0%, rgba(25, 123, 130, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(227, 202, 145, 0.2);
}

.ent-impact-note p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}

/* Enterprise Standards Section */
.ent-standards-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ent-standards-text {
    flex: 1;
}

.ent-standards-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ent-standards-text > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ent-standards-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ent-standard-card {
    background: linear-gradient(135deg, rgba(227, 202, 145, 0.12) 0%, rgba(25, 123, 130, 0.08) 100%);
    border: 1px solid rgba(25, 123, 130, 0.15);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ent-standard-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ent-standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(25, 123, 130, 0.12);
    border-color: var(--primary);
}

.ent-standard-card:hover::after {
    transform: scaleX(1);
}

.ent-standard-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.ent-standard-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* Designed For Section */
.ent-audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ent-audience-card {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8fafa 100%);
    border: 1px solid rgba(25, 123, 130, 0.12);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ent-audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ent-audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(25, 123, 130, 0.15);
    border-color: var(--primary);
}

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

.ent-audience-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 12px 30px rgba(25, 123, 130, 0.25);
}

.ent-audience-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.ent-audience-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Why Aryabh Section */
.ent-why-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ent-why-text {
    flex: 1;
}

.ent-why-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ent-why-text > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.ent-why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(227, 202, 145, 0.15);
}

.ent-why-list li:last-child {
    border-bottom: none;
}

.ent-why-list li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(227, 202, 145, 0.3);
}

.ent-why-list li span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.ent-why-visual {
    flex: 1;
}

.ent-why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ent-why-stat {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(227, 202, 145, 0.15);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ent-why-stat:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-5px);
    border-color: rgba(227, 202, 145, 0.3);
}

.ent-why-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(227, 202, 145, 0.25);
}

.ent-why-stat h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* FAQ Accordion Section */
.ent-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.ent-faq-accordion {
    background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
    border: 1px solid rgba(25, 123, 130, 0.12);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ent-faq-accordion:last-child {
    margin-bottom: 0;
}

.ent-faq-accordion:hover {
    border-color: rgba(25, 123, 130, 0.25);
    box-shadow: 0 10px 30px rgba(25, 123, 130, 0.08);
}

.ent-faq-accordion.active {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(25, 123, 130, 0.12);
    background: linear-gradient(180deg, #fff 0%, rgba(25, 123, 130, 0.02) 100%);
}

.ent-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    gap: 16px;
    transition: all 0.3s ease;
}

.ent-faq-question:hover {
    background: rgba(25, 123, 130, 0.02);
}

.ent-faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.ent-faq-question h4 i.fa-question-circle {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.ent-faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25, 123, 130, 0.12) 0%, rgba(25, 123, 130, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ent-faq-toggle i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.ent-faq-accordion.active .ent-faq-toggle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 12px rgba(25, 123, 130, 0.3);
}

.ent-faq-accordion.active .ent-faq-toggle i {
    color: #fff;
    transform: rotate(180deg);
}

.ent-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.ent-faq-accordion.active .ent-faq-answer {
    max-height: 300px;
}

.ent-faq-answer-inner {
    padding: 0 28px 24px 62px;
}

.ent-faq-answer p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Support Section */
.ent-support-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ent-support-text {
    flex: 1;
}

.ent-support-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ent-support-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.ent-support-text > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ent-support-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ent-support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--dark);
}

.ent-support-list li i {
    color: var(--primary);
    font-size: 16px;
}

.ent-support-note {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(227, 202, 145, 0.15) 0%, rgba(227, 202, 145, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.ent-support-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
    font-style: italic;
}

.ent-support-visual {
    flex: 1;
}

.ent-support-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ent-support-card {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(227, 202, 145, 0.2);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ent-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ent-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 202, 145, 0.15);
    border-color: var(--accent);
}

.ent-support-card:hover::before {
    opacity: 1;
}

.ent-support-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.ent-support-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* CTA Section */
.ent-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0f4a4f 100%);
    position: relative;
    overflow: hidden;
}

.ent-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(227, 202, 145, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ent-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(227, 202, 145, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(-20px, 20px); opacity: 1; }
}

.ent-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ent-cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ent-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1200px) {
    .ent-impact-grid,
    .ent-audience-grid,
    .ent-challenge-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ent-hero-image {
        width: 50%;
        right: 0;
    }

    .ent-hero-content .col-lg-6:first-child {
        max-width: 55%;
    }

    .ent-solution-image-extended {
        width: 48%;
    }

    .ent-solution-text {
        width: 52%;
    }
}

@media (max-width: 992px) {
    .ent-hero {
        min-height: auto;
    }

    .ent-hero-content {
        padding: 80px 0 60px;
    }

    .ent-hero-image {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
    }

    .ent-hero-image img {
        border-radius: 16px;
    }

    .ent-hero-content .col-lg-6:first-child {
        max-width: 100%;
    }

    .ent-hero-content .row {
        flex-direction: column;
    }

    .ent-challenge-content,
    .ent-feature-content,
    .ent-feature:nth-child(even) .ent-feature-content,
    .ent-dashboard-content,
    .ent-standards-content,
    .ent-why-content,
    .ent-support-content {
        flex-direction: column;
        gap: 40px;
    }

    /* Solution Section Mobile */
    .ent-solution-section {
        padding: 60px 0;
    }

    .ent-solution-image-extended {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .ent-solution-image-extended img {
        border-radius: 16px;
    }

    .ent-solution-content {
        min-height: auto;
        justify-content: flex-start;
    }

    .ent-solution-text {
        width: 100%;
        padding-left: 0;
    }

    /* Feature Section Mobile */
    .ent-feature-visual,
    .ent-feature-text {
        flex: none;
        width: 100%;
    }

    .ent-feature-image img {
        max-width: 100%;
    }

    .ent-challenge-cards,
    .ent-standards-grid,
    .ent-why-stats,
    .ent-support-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-impact-grid,
    .ent-audience-grid,
    .ent-challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-feature-number {
        font-size: 3.5rem;
        margin-bottom: -18px;
    }

    .ent-feature {
        padding: 50px 0;
    }

    .ent-section {
        padding: 60px 0;
    }

    .ent-dashboard-content {
        flex-direction: column;
    }

    .ent-dashboard-visual,
    .ent-dashboard-text {
        flex: none;
        width: 100%;
    }

    .ent-dashboard-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-standards-text,
    .ent-standards-grid,
    .ent-why-text,
    .ent-why-visual,
    .ent-support-text,
    .ent-support-visual {
        flex: none;
        width: 100%;
    }

    .ent-faq-question {
        padding: 20px 24px;
    }

    .ent-faq-answer-inner {
        padding: 0 24px 20px 52px;
    }

    .ent-capabilities-header {
        padding: 60px 0 25px;
    }
}

@media (max-width: 768px) {
    .ent-hero {
        display: block;
    }

    .ent-hero h1 {
        font-size: 2.2rem;
    }

    .ent-hero-content {
        padding: 60px 0 50px;
    }

    .ent-section {
        padding: 50px 0;
    }

    .ent-feature {
        padding: 40px 0;
    }

    .ent-hero-float {
        display: none;
    }

    .ent-feature-image::before {
        display: none;
    }

    .ent-challenge-cards,
    .ent-standards-grid,
    .ent-why-stats,
    .ent-support-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-impact-grid,
    .ent-audience-grid,
    .ent-challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-challenge-quote {
        padding: 24px 20px;
    }

    .ent-challenge-quote::before {
        display: none;
    }

    .ent-dashboard-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ent-faq-question h4 {
        font-size: 0.95rem;
    }

    .ent-faq-question h4 i.fa-question-circle {
        font-size: 18px;
    }

    .ent-section-header {
        margin-bottom: 40px;
    }

    .ent-solution-highlights {
        padding: 20px;
    }

    .ent-solution-highlights li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .ent-feature-number {
        font-size: 3rem;
    }

    .ent-feature-text h3 {
        font-size: 1.5rem;
    }

    .ent-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .ent-capabilities-header {
        padding: 50px 0 20px;
    }

    .ent-capabilities-header::before {
        width: 60px;
        height: 3px;
    }

    .ent-challenge-header h2,
    .ent-solution-text h2,
    .ent-section-title {
        font-size: 1.8rem;
    }

    .ent-impact-card,
    .ent-challenge-card,
    .ent-audience-card {
        padding: 24px 20px;
    }

    .ent-why-content,
    .ent-support-content,
    .ent-standards-content {
        text-align: center;
    }

    .ent-why-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .ent-support-list li {
        justify-content: flex-start;
    }

    .ent-faq-question {
        padding: 18px 16px;
    }

    .ent-faq-answer-inner {
        padding: 0 16px 18px 16px;
    }

    .ent-faq-question h4 {
        gap: 10px;
    }

    .ent-feature-list li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .ent-standards-text h2,
    .ent-why-text h2,
    .ent-support-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .ent-hero {
        display: block;
        min-height: auto;
    }

    .ent-hero-image{
        margin-top:0px
    }

    .ent-hero h1 {
        font-size: 1.8rem;
    }

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

    .ent-hero-note {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .ent-hero-content {
        padding: 50px 0 40px;
    }

    .ent-section {
        padding: 40px 0;
    }

    .ent-section-title,
    .ent-challenge-header h2,
    .ent-solution-text h2 {
        font-size: 1.6rem;
    }

    .ent-section-desc {
        font-size: 0.9rem;
    }

    .ent-feature-number {
        font-size: 2.5rem;
        margin-bottom: -10px;
    }

    .ent-feature-text h3 {
        font-size: 1.4rem;
    }

    .ent-feature-text > p {
        font-size: 0.95rem;
    }

    .ent-challenge-card-icon,
    .ent-impact-card-icon,
    .ent-audience-icon,
    .ent-why-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ent-challenge-card h4,
    .ent-impact-card h4,
    .ent-audience-card h4 {
        font-size: 1rem;
    }

    .ent-challenge-card p,
    .ent-impact-card p,
    .ent-audience-card p {
        font-size: 0.85rem;
    }

    .ent-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .ent-cta h2 {
        font-size: 1.5rem;
    }

    .ent-cta p {
        font-size: 0.9rem;
    }

    .ent-section-label {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .ent-feature-label {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .ent-solution-image-extended {
        padding: 0 10px;
    }

    .ent-challenge-header > p {
        font-size: 0.9rem;
    }

    .ent-challenge-quote p {
        font-size: 1rem;
    }

    .ent-standard-card,
    .ent-why-stat,
    .ent-support-card {
        padding: 24px 20px;
    }

    .ent-standard-card i,
    .ent-support-card i {
        font-size: 28px;
    }

    .ent-faq-toggle {
        width: 32px;
        height: 32px;
    }

    .ent-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .ent-feature {
        padding: 35px 0;
    }

    .ent-capabilities-header {
        padding: 40px 0 15px;
    }
}