/* Enterprise CTA Section */
.enterprise-cta-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px 0 0 0;
    padding: 0 0 48px 0;
}
.enterprise-cta-bg {
    width: 100%;
    max-width: 1200px;
    background: url('../Assets/Images/cta-bg-enterprise.jpg'), linear-gradient(90deg, #07102a 60%, #0b132b 100%);
    background-size: cover;
    background-position: right center;
    border-radius: 18px;
    border: 2px solid #2f80ed;
    box-shadow: 0 4px 32px 0 rgba(46,91,186,0.13);
    padding: 40px 36px 36px 36px;
    display: flex;
    align-items: center;
    min-height: 180px;
}
.enterprise-cta-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 900px;
}
.enterprise-cta-text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}
.enterprise-cta-btn {
    display: inline-block;
    background: #92cc4b;
    color: #0b132b;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 7px;
    padding: 12px 28px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(46,91,186,0.07);
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
    width: 340px;
}
.enterprise-cta-btn:hover {
    background: #78e06c;
    color: #07102a;
}
@media (max-width: 991px) {
    .enterprise-cta-bg {
        padding: 28px 16px 28px 16px;
        min-height: 120px;
    }
    .enterprise-cta-content {
        gap: 20px;
    }
    .enterprise-cta-text {
        font-size: 1.1rem;
    }
    .enterprise-cta-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
@media (max-width: 640px) {
    .enterprise-cta-bg {
        padding: 16px 6px 16px 6px;
        min-height: 80px;
    }
    .enterprise-cta-content {
        gap: 12px;
    }
    .enterprise-cta-text {
        font-size: 1rem;
    }
    .enterprise-cta-btn {
        font-size: 0.95rem;
        padding: 8px 14px;
    }
}
/* Footer full width fix */
.main-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #0b132b;
    z-index: 10;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Sen", -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #0b132b;
    color: #fff;
    line-height: 1.6;
}

/* Enterprise page container */
.enterprise-page {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 100vh;
}

/* Breadcrumb navigation */
.breadcrumb-nav {
    display: flex;
    width: 100%;
    padding: 11px 91px 10px 91px;
    align-items: center;
    background-color: rgba(0, 4, 42, 0.87);
    position: sticky;
    top: 80px;
    z-index: 99;
    backdrop-filter: blur(9.3px);
}

.breadcrumb-container {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 289px;
    height: 24px;
}

.back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.back-icon {
    width: 24px;
    height: 24px;
}

.page-title {
    color: #fff;
    font: 500 18px "Sen", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

/* Hero section */
.hero-section {
    height: 352px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 65px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    /* width: 1024px; */
    /* height: 1024px; */
    aspect-ratio: 1/1;
    position: absolute;
  
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 713px;
    height: 713px;
    border-radius: 713px;
    background: #0b132b;
    filter: blur(81.25px);
    left: 137px;
    top: -124px;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 91px;
}

.hero-title {
    width: 662px;
    color: #fff;
    text-transform: capitalize;
    font: 600 40px "Sen", -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.2;
    margin: 0;
}

/* Main content */
.main-content {
    display: flex;
    padding: 21px 90px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    background-color: #0b132b;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 1259px;
}

.article-intro,
.article-paragraph {
    color: #fff;
    font: 500 16px "Sen", -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
}

.section-heading {
    color: #fff;
    text-transform: capitalize;
    font: 600 32px "Sen", -apple-system, Roboto, Helvetica, sans-serif;
    margin: 12px 0;
}

.read-more-button {
    width: fit-content;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    background-color: #37a0f8;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

.read-more-button:hover {
    background-color: #2a8ce6;
}

.read-more-button {
    color: #0b132b;
    font: 500 16px/12px "Sen", -apple-system, Roboto, Helvetica, sans-serif;
}

/* Responsive design */
@media (max-width: 991px) {
    .breadcrumb-nav {
        padding: 11px 40px;
        top: 80px;
    }

    .breadcrumb-container {
        width: 100%;
    }

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

    .hero-title {
        width: calc(100% - 80px);
        font-size: 32px;
    }

    .hero-image {
        right: -400px;
    }

    .main-content {
        padding: 21px 40px;
    }
}

@media (max-width: 640px) {
    .breadcrumb-nav {
        padding: 11px 20px;
        top: 80px;
    }

    .hero-section {
        height: 250px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        width: calc(100% - 40px);
        font-size: 24px;
        margin-top: -50px;
    }

    .hero-image {
        right: -500px;
        width: 800px;
        height: 800px;
    }

    .main-content {
        padding: 21px 20px;
    }

    .section-heading {
        font-size: 24px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.back-button:focus,
.read-more-button:focus {
    outline: 2px solid #92cc4b;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        opacity: 0.8;
    }
}
