@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

body {
    font-family: 'Google Sans', sans-serif;
    font-weight: 500;
}

p {
    font-weight: 600;
}

a {
    text-decoration: none;
}

/* navbar start */

.navbar {
    padding: 1rem 2rem;
    background: #fff;
}

/* Logo Box */
.logo {
    width: 200px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-weight: 700;
    color: #212529;
    letter-spacing: 0.05em;
}

.brand-subtitle {
    font-size: 0.6rem;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 0.15em;
}

/* Nav Links */
.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #000000 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link:focus {
    color: #062A87 !important;
}

.nav-link.active {
    color: #062A87 !important;
    border-bottom: 2px solid #062A87;
}

/* Dropdowns */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    padding: 0.75rem 1rem;
}

.dropdown-item:hover {
    color: #062A87;
    background-color: #f8f9fa;
}

/* CTA Button */
.btn-cta {
    background-color: #062A87;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-cta:hover {
    background-color: #0a58ca;
    color: white;
}

/* navbar end */

/* about page styles */
.text-blue-primary {
    color: #062A87;
}

.bg-blue-primary {
    background-color: #062A87;
}

.divider-line {
    height: 2px;
    width: 48px;
    background-color: #062A87;
}

/* Removed inline styles moved to classes */
.nav-letter-spacing {
    letter-spacing: 0.1em;
}

.header-letter-spacing {
    letter-spacing: 0.1em;
}

.description-max-width {
    max-width: 500px;
}

/* about section 2*/
.timeline-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    padding: 4rem 1rem;
    color: #1F2937;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-title {
    font-weight: 800;
    color: #0A3D91;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.timeline-divider {
    height: 3px;
    width: 60px;
    background-color: #1E6DFF;
    margin: 0 auto;
}

.roadmap-container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.roadmap-line {
    position: absolute;
    top: 147px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D8E8FF;
    z-index: 0;
}

.milestone-node {
    position: relative;
    z-index: 1;
}

.year-badge-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.year-badge {
    background: linear-gradient(135deg, #0A3D91, #1E6DFF);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-container-wrapper {
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border: 2px solid #D8E8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #0A3D91;
    position: relative;
}

.connector-dot {
    position: absolute;
    top: 91px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #0A3D91;
    border-radius: 50%;
    z-index: 2;
}

.milestone-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #1E6DFF;
    height: 280px;
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: #0A3D91;
    margin-bottom: 15px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
    color: #4B5563;
    text-align: left;
}

.bullet-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.bullet-list li::before {
    content: "•";
    color: #1E6DFF;
    position: absolute;
    left: 0;
    font-weight: bold;
}


.sec1-img {
    width: 80px;
    margin: 0 auto;
    display: flex;
}

.sec2-img {
    width: 60px;
    margin: 0 auto;
    display: flex;
}

.sec3-img {
    width: 60px;

}

.vm-img {
    width: 30px;
}

@media (max-width: 767px) {
    .connector-dot {
        display: none;
    }

    .milestone-card {
        width: 70%;
        margin: 0 auto;
    }
}

/* about section 2 end */

/* about section 3 start */
.enn-partner-section {
    padding: 2rem 1rem;
    background-color: #ffffff;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

.enn-partner-title {
    font-weight: 800;
    color: #0B163A;
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Pure CSS Entrance Animation */
@keyframes cssFadeUp {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.85);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enn-partner-card {
    background: #ffffff;
    border: 2px solid #f0f4f8;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    gap: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;

    /* Apply CSS Load Animation */
    opacity: 0;
    animation: cssFadeUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.enn-partner-card:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 30px 60px -15px rgba(36, 88, 255, 0.3);
    border-color: #062A87;
    z-index: 2;
}

/* 1. Continuous Floating Icon */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hover: Full 360 spin + pop */
@keyframes iconSpinPop {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.3);
    }

    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

/* 2. Shine effect that periodically sweeps across cards */
@keyframes cardShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.enn-partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: cardShine 4s infinite;
    pointer-events: none;
    z-index: 10;
}

/* 3. Shimmer effect for numbers */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.enn-partner-icon-wrapper {
    font-size: 2.2rem;
    color: #062A87;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.enn-partner-icon-wrapper img {
    width: 50px;
    height: auto;
    animation: floatIcon 3s ease-in-out infinite;
}

.enn-partner-card:hover .enn-partner-icon-wrapper img {
    animation: iconSpinPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.enn-partner-stat {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;

    /* Continuous CSS Text Shimmer */
    background: linear-gradient(to right, #0B163A 20%, #062A87 50%, #0B163A 80%);
    background-size: 200% auto;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 2.5s linear infinite;
}

.enn-partner-text {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 8px;
}

/* Pulsing glow on the bottom border line on hover */
@keyframes lineGlow {

    0%,
    100% {
        box-shadow: 0 -2px 10px rgba(36, 88, 255, 0.2);
    }

    50% {
        box-shadow: 0 -6px 20px rgba(36, 88, 255, 0.8);
    }
}

.enn-partner-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #062A87;
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enn-partner-card:hover::after {
    width: 100%;
    animation: lineGlow 1.5s infinite alternate;
}

/* about section 3 end */

/* about section 4 start */
.vm-section {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    padding: 60px 0;
}

/* Card Base Styles */
.vm-card {
    background-color: #F7F9FC;
    border: 1px solid #e1e8f0;
    border-radius: 24px;
    padding: 48px;
    height: 95%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Decorative Background Elements */
.bg-graphic {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 50%;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}

.card-content {
    z-index: 1;
    position: relative;
}

/* Typography */
.vm-label {
    font-weight: 700;
    color: #062A87;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.vm-heading {
    font-weight: 800;
    color: #0B163A;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.vm-underline {
    width: 60px;
    height: 3px;
    background-color: #062A87;
    margin-bottom: 30px;
}

.vm-text {
    color: #000000;
    line-height: 1.8;
    font-size: 14px;
}

.icon-circle2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #062A87;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    margin-right: 20px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.list-number {
    background: #062A87;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* about section 4 end */

/* about section 5 start */
.cv-body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFD;
    padding: 3rem 0;
}

.cv-section-title {
    font-weight: 800;
    color: #002ab6;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cv-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cv-icon-wrapper {
    /* background: #f8f9fa; */
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.cv-icon-1 {
    color: #062A87;
}

.cv-icon-2 {
    color: #6366f1;
}

.cv-icon-3 {
    color: #22c55e;
}

.cv-title {
    font-weight: 800;
    color: #002ab6;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cv-text {
    font-size: 0.95rem;
    color: #052c65;
    line-height: 1.6;
    margin: 0;
}

.cv-cta-bar {
    background: linear-gradient(135deg, #ecf2ff 0%, #c3d3ff 100%);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: 0 15px 30px rgba(11, 22, 58, 0.2);
}

.cv-cta-content {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 25px;
    color: #0B163A;
}

.cv-cta-icon {
    font-size: 2.2rem;
    color: #ffffff;
    background: #2c5eff;
    padding: 10px 14px;
    border-radius: 50%;
}

.cv-btn-touch {
    background: #2563eb;
    color: white;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.cv-btn-touch:hover {
    background: #1d4ed8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.tree-section {
    padding: 60px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tree-image {
    max-width: 60%;
    height: auto;
    display: block;
}

/* about section 5 end */
/* footer */
.footer-bg {
    background-color: #ffffff;
    color: #495057;
    padding: 60px 0 30px;
    border-top: 1px solid #e9ecef;
}

.footer-heading {
    color: #0B163A;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.footer-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #062A87;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #495057;
}

.contact-item i {
    margin-top: 5px;
    color: #062A87;
}

.bottom-bar {
    background-color: #F8FAFD;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B163A;
    margin-bottom: 20px;
}

.brand-logo span {
    color: #062A87;
}

/* footer */

/* service banner */
.banner-container {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-image: url('../img/bans.png');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #020b24 30%, rgba(2, 11, 36, 0.7) 48%, rgba(2, 11, 36, 0.2) 70%);
    z-index: 1;
}

.content-area {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.breadcrumb-text {
    font-size: 0.85rem;
    color: #a0aec0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
    text-transform: uppercase;
}

.banner-subtitle {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 4px;
    background: #3b82f6;
    margin-bottom: 30px;
}

.banner-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 550px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .gradient-overlay {
        background: #020b24;
    }
}

/* service 2 */
.enn-as-section-wrapper {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #1F2937;
    padding: 4rem 1rem;
}

.enn-as-header-container {
    text-align: center;
    margin-bottom: 3rem;
}

.enn-as-main-title {
    font-weight: 800;
    color: #0A2D8F;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.enn-as-sub-title {
    color: #6B7280;
    font-size: 0.85rem;
}

/* ===========================
   Tabs Container
=========================== */

.enn-as-nav-tabs-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}


/* ===========================
   Tab
=========================== */

.enn-as-nav-tab-item {
    position: relative;
    overflow: hidden;

    width: 412px;
    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 18px;

    border-radius: 12px;
    border: 1px solid #E5E7EB;

    background: #fff;
    color: #0A2D8F;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        color .35s ease,
        border-color .35s ease,
        background .35s ease;
}


/* Shimmer Effect */

.enn-as-nav-tab-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: skewX(-25deg);
    transition: 1s;
}


/* Right Arrow */

.enn-as-nav-tab-item::after {
    content: "↓";
    position: absolute;
    right: 22px;
    top: 80%;
    left: 50%;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
    font-size: 18px;
    transition: .35s ease;
}


/* Icon */

.enn-as-nav-tab-item img {
    width: 50px;
    transition: .45s ease;
}


/* Hover */

.enn-as-nav-tab-item:hover {

    background: linear-gradient(135deg, #0A2D8F, #1345d6);

    color: #fff;

    border-color: #0A2D8F;

    transform:
        translateY(-10px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(10, 45, 143, .28);
}


/* Shimmer Animation */

.enn-as-nav-tab-item:hover::before {
    left: 150%;
}


/* Arrow */

.enn-as-nav-tab-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* Icon Animation */

.enn-as-nav-tab-item:hover img {
    transform:
        scale(1.15) rotate(-8deg);
}


/* Active */

.enn-as-nav-tab-item.active {

    background: linear-gradient(135deg, #0A2D8F, #1345d6);

    color: #fff;

    border-color: #0A2D8F;

    box-shadow:
        0 12px 30px rgba(10, 45, 143, .25);
}


/* Active Icon */

.enn-as-nav-tab-item.active img {
    transform: scale(1.08);
}


/* Click Effect */

.enn-as-nav-tab-item:active {
    transform: scale(.97);
}


/* Responsive */

@media(max-width:991px) {

    .enn-as-nav-tab-item {
        width: 100%;
    }

}

/* Pointer Arrow */
/* .enn-as-nav-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #0A2D8F;
} */

.enn-as-service-card-block {
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.enn-as-service-card-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.enn-as-card-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.enn-as-badge-icon-layer {
    position: absolute;
    top: 145px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #0A2D8F;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.enn-as-card-body-content {
    padding: 40px 18px 18px;
    text-align: center;
}

.enn-as-card-body-content p {
    font-size: 14px;
}

.enn-as-card-heading {
    font-weight: 800;
    color: #0A2D8F;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 0.85rem;
}

.enn-as-card-description {
    color: #0A2D8F;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.enn-as-feature-checklist {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
    height: 120px;
}

.enn-as-feature-checklist li {
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0A2D8F;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.enn-as-feature-checklist i {
    color: #0A2D8F;
    margin-top: 2px;
}

.enn-as-explore-button {
    border: 2px solid #0A2D8F;
    color: #0A2D8F;
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.enn-as-explore-button:hover {
    background: #0A2D8F;
    color: #FFFFFF;
}

/* management */
.enn-as-container {
    /* font-family: 'Inter', sans-serif; */
    background-color: #FFFFFF;
    padding: 40px 0;
}

.enn-as-heading {
    font-weight: 800;
    color: #062A87;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* Grid with Separators */
.enn-as-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.enn-as-service-item {
    padding: 40px 18px;
    text-align: center;
    border-right: 1px solid #E5E7EB;
    transition: all 0.4s ease;
}

/* .enn-as-service-item:last-child {
    border-right: none;
} */

.enn-as-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #062A87;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.enn-as-icon-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.enn-as-title {
    font-size: 14px;
    font-weight: 800;
    color: #062A87;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.enn-as-line {
    width: 50px;
    height: 3px;
    background: #062A87;
    margin: 0 auto 15px;
}

.enn-as-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #4B5563;
    max-width: 220px;
    margin: 0 auto;
}

/* sanderd */
.enns-standardeds-container {
    background-color: #FFFFFF;
    padding-top: 40px;
}

.enns-standardeds-card {
    background: #f1f7ff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
    margin: 0 auto;
}

.enns-standardeds-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    color: #062A87;
    letter-spacing: 1px;
    margin-bottom: -18px;
}

.enns-standardeds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

.enns-standarded-item {
    padding: 25px 20px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: ;
    gap: 20px;
    transition: 0.4s ease;
}

.enns-standarded-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #E5E7EB;
}

.enns-standarded-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enns-standarded-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0);
}

.enns-standarded-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: #062A87;
    margin-bottom: 8px;
}

.enns-standarded-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

/* Hover effects */
.enns-standarded-item:hover {
    transform: translateY(-5px);
}

.enns-standarded-item:hover h4 {
    color: #062A87;
}

.enns-standarded-item:hover .enns-standarded-icon img {
    transform: scale(1.08);
    transition: 0.4s ease;
}

@media (max-width: 992px) {
    .enns-standardeds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enns-standarded-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .enns-standardeds-grid {
        grid-template-columns: 1fr;
    }

    .enns-standarded-item::after {
        display: none !important;
    }
}

/* CTA */
.enn-as-cta-bar {
    background: #062A87;
    padding: 20px 30px;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.enn-as-cta-btn {
    background: #062A87;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 700;
}

/* train */
.ennn-at-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.ennn-at-heading {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    color: #062A87;
    letter-spacing: 0.5px;
}

.ennn-at-subheading {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    max-width: 900px;
    margin: 20px 0px;
}

.ennn-at-grid {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.ennn-at-column {
    padding: 40px 20px;
    transition: 0.4s ease;
    border-right: 1px solid #E5E7EB;
}

.ennn-at-column:last-child {
    border-right: none;
}

.ennn-at-column:hover {
    transform: translateY(-8px);
    background: #FAFBFF;
}

.ennn-at-column:hover .ennn-at-icon {
    transform: scale(1.08);
}

.ennn-at-column:hover .ennn-at-title {
    color: #062A87;
}

.ennn-at-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #062A87;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.ennn-at-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.ennn-at-title {
    font-size: 18px;
    font-weight: 700;
    color: #062A87;
}

.ennn-at-title-line {
    width: 50px;
    height: 3px;
    background: #062A87;
    margin: 12px 0 25px;
}

.ennn-at-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.ennn-at-list li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Updated Icon Style */
.check-icon-wrapper {
    width: 22px;
    height: 22px;
    background: #062A87;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .ennn-at-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ennn-at-column:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .ennn-at-grid {
        grid-template-columns: 1fr;
    }

    .ennn-at-column {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }
}

/* audit */
.eenn-as-container {
    max-width: 1400px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 60px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef1f6;
}

.eenn-as-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.eenn-as-header::before,
.eenn-as-header::after {
    content: "";
    width: 220px;
    height: 1px;
    background: #E5E7EB;
}

.eenn-as-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #062A87;
    letter-spacing: 0.5px;
    margin: 0;
}

.eenn-as-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.eenn-as-col {
    padding: 0 35px;
    border-right: 1px solid #E5E7EB;
    transition: 0.4s ease;
}

.eenn-as-col:last-child {
    border-right: none;
}

.eenn-as-col:hover {
    transform: translateY(-6px);
}

.eenn-as-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #062A87;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s ease;
    margin-right: 10px
}

.ti-wd {
    width: 275px;
}

.eenn-as-col:hover .eenn-as-icon {
    transform: scale(1.08);
}

.eenn-as-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.eenn-as-service-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #062A87;
    line-height: 1.4;
    /* text-align: center; */
    margin: 0;
    transition: 0.4s ease;
}

.eenn-as-col:hover .eenn-as-service-title {
    color: #062A87;
}

.eenn-as-underline {
    width: 45px;
    height: 3px;
    background: #062A87;
    margin: 12px 0;
}

.eenn-as-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eenn-as-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.7;
}

.eenn-as-check {
    width: 22px;
    height: 22px;
    background: #062A87;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}



/* ===========================
   TABLET RESPONSIVE
=========================== */
@media (max-width: 991px) {

    .ennn-at-grid,
    .eenn-as-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .ennn-at-column,
    .eenn-as-col {
        border-right: none;
        padding: 25px;
    }

    .eenn-as-container {
        padding: 40px 30px;
    }

    .eenn-as-title,
    .ennn-at-heading {
        font-size: 32px;
        text-align: center;
    }

    .eenn-as-header::before,
    .eenn-as-header::after {
        width: 100px;
    }

    .enn-as-nav-tabs-group {
        gap: 15px;
    }

    .enn-as-nav-tab-item {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
        text-align: center;
    }
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 767px) {

    /* Navigation Tabs */
    .enn-as-nav-tabs-group {
        flex-direction: column;
        gap: 12px;
    }

    .enn-as-nav-tab-item {
        width: 100%;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .enn-as-nav-tab-item img {
        width: 40px !important;
    }

    /* Headings */
    .ennn-at-heading,
    .eenn-as-title {
        font-size: 28px;
        text-align: center;
        line-height: 1.3;
    }

    .ennn-at-subheading {
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
    }

    /* Grid */
    .ennn-at-grid,
    .eenn-as-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ennn-at-column,
    .eenn-as-col {
        padding: 25px 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .ennn-at-column:last-child,
    .eenn-as-col:last-child {
        border-bottom: none;
    }

    /* Icons */
    .tiwd {
        padding-left: 10px
    }

    .ennn-at-icon,
    .eenn-as-icon {
        width: 69px;
        height: 60px;
        margin: 0 auto 15px;
    }

    .ennn-at-icon img,
    .eenn-as-icon img {
        width: 30px;
        height: 30px;
    }

    /* Titles */
    .ennn-at-title,
    .eenn-as-service-title {
        font-size: 18px;
        /* text-align: center; */
    }

    .ennn-at-title-line,
    .eenn-as-underline {
        /* margin: 12px auto; */
    }

    /* Lists */
    .ennn-at-list li,
    .eenn-as-item {
        font-size: 14px;
        line-height: 1.7;
    }

    .check-icon-wrapper {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    /* Container */
    .eenn-as-container {
        padding: 25px 15px;
        margin: 25px auto;
        border-radius: 12px;
    }

    .eenn-as-header {
        margin-bottom: 30px;
    }

    .eenn-as-header::before,
    .eenn-as-header::after {
        display: none;
    }

    .ti-wd {
        width: 100%;
        margin-left: 10px;
    }
}

/* ===========================
   EXTRA SMALL DEVICES
=========================== */
@media (max-width: 480px) {

    .ennn-at-heading,
    .eenn-as-title {
        font-size: 24px;
    }

    .ennn-at-title,
    .eenn-as-service-title {
        font-size: 17px;
    }

    .tiwd {
        padding-left: 10px
    }

    .ennn-at-subheading {
        font-size: 14px;
    }

    .ennn-at-list li,
    .eenn-as-item {
        font-size: 13px;
    }

    .enn-as-nav-tab-item {
        font-size: 13px;
        padding: 12px;
    }
}

/* service banner */
.as-aud-section {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    background: url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
}

/* Left Content Panel */
.as-aud-content-panel {
    width: 42%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.as-aud-content-panel::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    z-index: 1;
}

/* Right Visual Panel */
.as-aud-visual-panel {
    width: 58%;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
}

.as-aud-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    color: #04195C;
    margin-bottom: 20px;
}
.bottom-bar a {
    color: #062A87;
}
.as-aud-breadcrumb .as-aud-active {
    color: #062A87;
}

.as-aud-main-heading {
    font-size: 34px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
    color: #04195C;
    text-transform: uppercase;
}

.as-aud-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #062A87;
    margin-top: 16px;
}

.as-aud-divider {
    width: 60px;
    height: 3px;
    background: #062A87;
    border-radius: 50px;
    margin: 18px 0;
}

.as-aud-description {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: #23304A;
    max-width: 500px;
}

/* Feature Stack & Timeline */
.as-aud-cards-wrapper {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.as-aud-timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.as-aud-timeline-line {
    width: 2px;
    height: 290px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px dotted #FFF;
}

.as-aud-timeline-node {
    width: 12px;
    height: 12px;
    background: #062A87;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 12px #062A87;
}

.as-aud-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as-aud-feature-card {
    width: 250px;
    height: 60px;
    background: rgba(0, 24, 90, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.as-aud-feature-card i {
    font-size: 24px;
    color: #FFFFFF;
}

.as-aud-feature-card .as-aud-text-content h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.as-aud-feature-card .as-aud-text-content p {
    margin: 0;
    font-size: 10px;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .as-aud-section {
        height: auto;
        flex-direction: column;
    }

    .as-aud-content-panel,
    .as-aud-visual-panel {
        width: 100%;
        height: 350px;
        padding: 30px;
    }

    .as-aud-cards-wrapper {
        position: relative;
        transform: none;
        top: auto;
        right: auto;
        margin-top: 20px;
    }
}

/* exclusive programs */
.ennen-hero-section {
    position: relative;
    height: 480px;
    width: 100%;
    overflow: hidden;
    display: flex;
    background-color: #001022;
}

/* Left Panel with Edge Design */
.ennen-hero-left {
    width: 45%;
    /* Slightly increased for better balance with edge design */
    background: linear-gradient(135deg, #02142f, #001022);
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    /* Premium Diagonal Edge Design */
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.ennen-hero-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    color: #FFFFFF;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ennen-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 8px;
}

.ennen-hero-subtitle-divider {
    width: 60px;
    height: 3px;
    background-color: #007BFF;
    margin-bottom: 20px;
    border-radius: 2px;
}

.ennen-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Feature Row */
.ennen-hero-feature-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ennen-hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ennen-hero-feature-item:last-child {
    border-right: none;
}

.ennen-hero-feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #007BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ennen-hero-feature-item h6 {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

/* Right Panel */
.ennen-hero-right {
    width: 58%;
    margin-left: -3%;
    /* Pulls into the left panel for overlap */
    background: url('../img/exclu.webp') center/cover;
    position: relative;
}

.ennen-hero-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 16, 34, 0.5);
    /* Slightly darker overlay */
}

@media (max-width: 992px) {
    .ennen-hero-section {
        height: auto;
        flex-direction: column;
    }

    .ennen-hero-left,
    .ennen-hero-right {
        width: 100%;
        padding: 40px;
        clip-path: none;
        margin-left: 0;
    }

    .ennen-hero-heading {
        font-size: 42px;
    }
}


/* exclusive */
.exclu-img {
    width: 150px;
    display: flex;
    margin: 0 auto;
}

/* key benefits */
.enn-kb-section {
    background: linear-gradient(90deg, #02142f, #001022);
    padding: 25px 40px;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.enn-kb-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.enn-kb-underline {
    width: 80px;
    height: 3px;
    background-color: #007BFF;
    margin-top: 8px;
}

.enn-kb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.enn-kb-item:last-child {
    border-right: none;
}

.enn-kb-icon {
    font-size: 28px;
    color: #ffffff;
}

.enn-kb-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.enn-kb-cta {
    background-color: #0062FF;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: auto;
    transition: background 0.3s;
}

.enn-kb-cta:hover {
    background-color: #0056b3;
    color: white;
}

@media (max-width: 1200px) {
    .enn-kb-section {
        justify-content: center;
        gap: 20px;
    }

    .enn-kb-cta {
        margin-left: 0;
    }
}

/* six sigma */
.enn-sigma-section {
    width: 100%;
    height: 530px;
    background-color: #041C4A;
    display: flex;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.enn-sigma-left {
    width: 45%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #041C4A 0%, #020e26 100%);
    position: relative;
    z-index: 2;
}

.enn-sigma-heading {
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.enn-sigma-heading span {
    color: #3DBE41;
}

.enn-sigma-tagline-wrapper {
    margin-top: 20px;
    margin-bottom: 25px;
}

.enn-sigma-tagline {
    font-size: 26px;
    font-weight: 600;
    color: #3DBE41;
    margin: 0;
}

.enn-sigma-tagline-underline {
    width: 80px;
    height: 3px;
    background-color: #3DBE41;
    margin-top: 8px;
    border-radius: 2px;
}

.enn-sigma-body {
    font-size: 16px;
    line-height: 1.7;
    color: #EAEAEA;
    opacity: 0.9;
    margin-bottom: 15px;
    max-width: 520px;
}

.enn-sigma-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.enn-sigma-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    flex: 1;
}

.enn-sigma-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.enn-sigma-feat-item h6 {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.enn-sigma-right {
    width: 55%;
    background: url('../new-home/sigma.png') center/cover;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.enn-sigma-right::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(4, 28, 74, 0.4); */
}

@media (max-width: 992px) {
    .enn-sigma-section {
        height: auto;
        flex-direction: column;
    }

    .enn-sigma-left,
    .enn-sigma-right {
        width: 100%;
        padding: 40px;
        clip-path: none;
    }
}

/* sigma sec 2 */
.enn-greenbelt-section {
    background: #ffffff;
    padding: 60px 40px;
    font-family: 'Inter', sans-serif;
    color: #0B1F5B;
}

.enn-greenbelt-header {
    margin-bottom: 50px;
    max-width: 900px;
}

.enn-greenbelt-title {
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.enn-greenbelt-desc {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.enn-greenbelt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    overflow: hidden;
}

.enn-greenbelt-col {
    padding: 40px 25px;
    border-right: 1px solid #EAEAEA;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.enn-greenbelt-col:last-child {
    border-right: none;
}

.enn-greenbelt-icon-circle {
    width: 70px;
    height: 70px;
    background: #1F6F3D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.enn-greenbelt-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #1F6F3D;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.enn-greenbelt-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.enn-greenbelt-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.enn-greenbelt-check {
    color: #1F6F3D;
    margin-top: 3px;
    flex-shrink: 0;
}

.enn-greenbelt-illustration {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
}

.enn-greenbelt-illustration img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .enn-greenbelt-grid {
        grid-template-columns: 1fr 1fr;
    }

    .enn-greenbelt-col:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .enn-greenbelt-grid {
        grid-template-columns: 1fr;
    }

    .enn-greenbelt-col {
        border-right: none;
        border-bottom: 1px solid #EAEAEA;
    }
}

/*  iso 13 */
.enn-iso-services-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    padding: 60px 0;
}

.enn-iso-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.enn-iso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.enn-iso-card-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.enn-iso-badge-container {
    position: relative;
    margin-top: -40px;
    text-align: center;
}

.enn-iso-badge {
    width: 80px;
    height: 80px;
    background: #0A2E8A;
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 32px;
}

.enn-iso-card-content {
    padding: 20px;
    text-align: center;
}

.enn-iso-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0A2E8A;
    margin: 15px 0;
    min-height: 40px;
}

.enn-iso-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 20px;
}

.enn-iso-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.enn-iso-list-item {
    font-size: 13px;
    color: #374151;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.enn-iso-check-icon {
    color: #1D4ED8;
    font-size: 14px;
    margin-top: 2px;
}

.enn-iso-cta {
    display: inline-block;
    border: 2px solid #1D4ED8;
    color: #1D4ED8;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.enn-iso-cta:hover {
    background: #1D4ED8;
    color: #FFFFFF;
}

/* iso 14001 */
.enn-isoems-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../img/iso-14001.webp') center center/cover no-repeat;
}

/* Overlay */
.enn-isoems-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(4, 28, 74, 0.96) 0%,
            rgba(4, 28, 74, 0.88) 35%,
            rgba(4, 28, 74, 0.55) 65%,
            rgba(4, 28, 74, 0.20) 100%);
    z-index: 1;
}

/* Content Area */
.enn-isoems-content {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 60px;
}

/* Breadcrumb */
.enn-isoems-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.enn-isoems-active {
    color: #3DBE41;
}

/* Heading */
.enn-isoems-heading {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.enn-isoems-subheading {
    font-size: 24px;
    font-weight: 700;
    color: #3DBE41;
    margin-bottom: 20px;
}

.enn-isoems-description {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* Features */
.enn-isoems-feature-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.enn-isoems-feature-item {
    text-align: center;
    color: #FFFFFF;
    flex: 1;
    min-width: 120px;
}

.enn-isoems-feature-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.enn-isoems-feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.enn-isoems-feature-item h6 {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1200px) {
    .enn-isoems-content {
        width: 70%;
    }

    .enn-isoems-heading {
        font-size: 54px;
    }
}

@media (max-width: 992px) {
    .enn-isoems-section {
        min-height: auto;
        padding: 60px 0;
    }

    .enn-isoems-content {
        width: 100%;
        padding: 40px 30px;
    }

    .enn-isoems-heading {
        font-size: 42px;
    }

    .enn-isoems-subheading {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .enn-isoems-content {
        padding: 30px 20px;
    }

    .enn-isoems-heading {
        font-size: 34px;
    }

    .enn-isoems-feature-row {
        justify-content: center;
        gap: 15px;
    }

    .enn-isoems-feature-item {
        min-width: 140px;
    }
}

/* 14 section 2 */
.enn-ems-container {
    max-width: 1400px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.enn-ems-title {
    font-size: 32px;
    font-weight: 800;
    color: #062A87;
    margin-bottom: 10px;
    text-align: center;
}

.enn-ems-desc {
    color: #4B5563;
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.enn-ems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.enn-ems-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.enn-ems-card-top {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.enn-ems-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Concave/Inner Curve Divider */
.enn-ems-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    fill: #FFFFFF;
}

.enn-ems-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    border: 5px solid #FFFFFF;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
}

.enn-ems-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 7px;
}

.enn-ems-card-body {
    padding: 0 30px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.enn-ems-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #062A87;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.enn-ems-card-text {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 25px;
    line-height: 1.6;
}

.enn-ems-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.enn-ems-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    color: #1F2937;
}

.enn-ems-list li img {
    width: 30px;
    height: 30px;
}

.enn-ems-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    margin-top: auto;
}

.enn-ems-cta {
    background: linear-gradient(90deg, #04195C, #062A87);
    padding: 25px 40px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.enn-ems-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enn-ems-cta-icon {
    width: 50px;
    height: 50px;
}

.enn-ems-cta-btn {
    background: #062A87;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* train  */
.enn-aw-section {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    background: #ffffff;
    /* Solid white base for the left side */
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Left Content Panel */
.enn-aw-content {
    width: 48%;
    /* Adjusted for better content balance */
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    /* Above the image and gradient fade */
    position: relative;
    background: transparent;
    /* Allows seamless blending */
}

.enn-aw-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    color: #04195C;
    margin-bottom: 20px;
}

.enn-aw-breadcrumb span {
    color: #062A87;
}

.enn-aw-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    color: #04195C;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.enn-aw-subheading {
    font-size: 20px;
    font-weight: 700;
    color: #2E8B57;
    /* Green color for the subtitle */
    margin-bottom: 12px;
}

/* The requested small underline */
.enn-aw-divider {
    width: 65px;
    height: 3px;
    background-color: #2E8B57;
    margin-bottom: 25px;
    border-radius: 2px;
}

.enn-aw-description {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    max-width: 580px;
    font-weight: 500;
}

/* Right Visual Panel */
.enn-aw-visual {
    width: 70%;
    /* Extends under the content panel */
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: url('../img/14-train.webp') center right/cover no-repeat;
    z-index: 1;
}

/* Perfect Linear Gradient Fade Overlay */
.enn-aw-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    /* Prevents sub-pixel rendering gaps */
    width: 55%;
    /* Wide fade coverage for maximum smoothness */
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.9) 15%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .enn-aw-section {
        height: auto;
        flex-direction: column;
    }

    .enn-aw-content {
        width: 100%;
        padding: 40px;
        background: #ffffff;
    }

    .enn-aw-visual {
        position: relative;
        width: 100%;
        height: 350px;
    }

    .enn-aw-visual::after {
        background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 50%);
        width: 100%;
        height: 50%;
        left: 0;
        top: -2px;
    }
}

/* audit iso 14 */
.enn-aud-srv-wrapper {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    padding: 60px 15px;
    width: 100%;
}

.enn-aud-srv-heading {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #062A87;
    text-align: center;
    margin-bottom: -50px;
    position: relative;
    letter-spacing: 0.5px;
    z-index: 999;
}

.enn-aud-srv-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.enn-aud-srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.enn-aud-srv-icon-container {
    width: 80px;
    height: 80px;
    background-color: #062A87;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(6, 42, 135, 0.2);
}

.enn-aud-srv-icon-container i {
    color: #195026;
    font-size: 32px;
    font-weight: 300;
    /* For a thinner outline appearance */
}

.enn-aud-srv-title {
    font-size: 15px;
    /* Adjusted slightly from 28px to fit 4 columns gracefully */
    font-weight: 600;
    color: #062A87;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
    min-height: 58px;
    /* Helps align descriptions */
}

.enn-aud-srv-desc {
    font-size: 15px;
    color: #4B5563;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.enn-aud-srv-divider {
    width: 50px;
    height: 3px;
    background-color: #195026;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.enn-aud-srv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex-grow: 1;
    /* Pushes content evenly */
}

.enn-aud-srv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.5;
}

.enn-aud-srv-list li i {
    color: #195026;
    font-size: 18px;
    margin-top: 1px;
}

@media (max-width: 1200px) {
    .enn-aud-srv-title {
        font-size: 20px;
    }
}

/* audit banner */
.enn-iso-audit-section {
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    background-color: #FFFFFF;
    overflow: hidden;
}

/* --- LEFT PANEL --- */
.enn-iso-audit-left {
    flex: 0 0 42%;
    background: #FFFFFF;
    padding: 50px 40px 50px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    position: relative;
}

.enn-iso-audit-breadcrumb {
    font-size: 13px;
    font-weight: 600;
    color: #062A87;
    margin-bottom: 25px;
}

.enn-iso-audit-breadcrumb .enn-iso-audit-highlight {
    color: #3BA99C;
}

.enn-iso-audit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    color: #062A87;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.enn-iso-audit-title .enn-iso-audit-teal {
    color: #3BA99C;
}

.enn-iso-audit-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2563EB;
    /* Bright royal blue */
    margin-bottom: 15px;
}

.enn-iso-audit-divider {
    width: 50px;
    height: 3px;
    background-color: #2563EB;
    margin-bottom: 20px;
    border-radius: 2px;
}

.enn-iso-audit-desc {
    font-size: 16px;
    font-weight: 500;
    color: #062A87;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

/* --- CENTER PANEL (IMAGE) --- */
.enn-iso-audit-center {
    flex: 0 0 30%;
    position: relative;
    background: url('../img/14-audit.webp') center right/cover no-repeat;
    z-index: 1;
}

/* Smooth white gradient transition fading into the image */
.enn-iso-audit-center::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    /* Pull slightly left to prevent sub-pixel gaps */
    width: 180px;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* --- RIGHT PANEL (FEATURE CARDS) --- */
.enn-iso-audit-right {
    flex: 0 0 28%;
    background-color: #041A63;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    position: relative;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    /* Slight shadow over image */
}

.enn-iso-audit-feature-row {
    display: flex;
    gap: 15px;
    position: relative;
    margin-bottom: 12px;
    align-items: stretch;
}

.enn-iso-audit-feature-row:last-child {
    margin-bottom: 0;
}

/* Timeline Construct */
.enn-iso-audit-timeline-col {
    width: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.enn-iso-audit-timeline-line {
    position: absolute;
    width: 2px;
    height: calc(100% + 12px);
    /* Extends through the gap */
    background: #3BA99C;
    top: 0;
}

/* Fix start and end lines */
.enn-iso-audit-feature-row:first-child .enn-iso-audit-timeline-line {
    top: 50%;
    height: calc(50% + 12px);
}

.enn-iso-audit-feature-row:last-child .enn-iso-audit-timeline-line {
    height: 50%;
}

.enn-iso-audit-timeline-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3BA99C;
    box-shadow: 0 0 10px #3BA99C;
    /* Glowing effect */
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.enn-iso-audit-card {
    flex: 1;
    background: rgba(6, 42, 135, 0.4);
    border: 1px solid rgba(45, 140, 255, 0.3);
    /* Thin electric blue border */
    box-shadow: 0 0 15px rgba(45, 140, 255, 0.1);
    /* Subtle neon-blue glow */
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.enn-iso-audit-card-icon {
    font-size: 26px;
    color: #3BA99C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enn-iso-audit-card-content h6 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enn-iso-audit-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 10.5px;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
    .enn-iso-audit-title {
        font-size: 42px;
    }

    .enn-iso-audit-left {
        padding: 40px 30px;
    }

    .enn-iso-audit-right {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .enn-iso-audit-section {
        flex-direction: column;
    }

    .enn-iso-audit-left {
        flex: none;
        width: 100%;
        padding: 50px 30px;
    }

    .enn-iso-audit-center {
        flex: none;
        width: 100%;
        height: 350px;
    }

    .enn-iso-audit-center::before {
        width: 100%;
        height: 100px;
        background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    }

    .enn-iso-audit-right {
        flex: none;
        width: 100%;
        padding: 40px 30px;
        box-shadow: none;
    }
}

/* iso manage 14 */
.enn-iso-ems-section {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    height: 490px;
    width: 100%;
    overflow: hidden;
    display: flex;
}

/* Left Content Panel */
.enn-iso-ems-content-panel {
    width: 40%;
    background: #FFFFFF;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

/* Smooth Gradient Transition */
.enn-iso-ems-content-panel::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}

/* Center Visual Panel */
.enn-iso-ems-visual-panel {
    width: 35%;
    background: url('../img/14-manage.webp') center/cover;
    position: relative;
}

/* Right Sidebar Panel */
.enn-iso-ems-sidebar-panel {
    width: 25%;
    background: linear-gradient(180deg, #041C4A 0%, #062A87 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

.enn-iso-ems-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 20px;
}

.enn-iso-ems-breadcrumb .enn-iso-ems-active {
    color: #2E9E48;
}

.enn-iso-ems-heading {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: #062A87;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.enn-iso-ems-subheading {
    font-size: 28px;
    font-weight: 700;
    color: #2E9E48;
    margin-bottom: 25px;
}

.enn-iso-ems-description {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Bottom Feature Icons */
.enn-iso-ems-feature-row {
    display: flex;
    gap: 20px;
}

.enn-iso-ems-feature-item {
    text-align: center;
}

.enn-iso-ems-feature-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #5CB338;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.enn-iso-ems-feature-label {
    font-size: 11px;
    font-weight: 600;
    color: #062A87;
    text-transform: uppercase;
}

/* Vertical Timeline */
.enn-iso-ems-timeline {
    position: relative;
    padding-left: 20px;
}

.enn-iso-ems-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #5CB338;
}

.enn-iso-ems-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
}

.enn-iso-ems-node {
    width: 14px;
    height: 14px;
    background: #5CB338;
    border-radius: 50%;
    position: absolute;
    left: -27px;
    top: 5px;
    border: 3px solid #041C4A;
}

.enn-iso-ems-benefit-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #5CB338;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enn-iso-ems-benefit-title {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 12px;
}

.enn-iso-ems-benefit-text {
    font-size: 14px;
    color: #cbd5e1;
}

@media (max-width: 992px) {
    .enn-iso-ems-section {
        height: auto;
        flex-direction: column;
    }

    .enn-iso-ems-content-panel,
    .enn-iso-ems-visual-panel,
    .enn-iso-ems-sidebar-panel {
        width: 100%;
        padding: 40px;
    }
}

/* 14 manage section 2 */
.enennen-cons-wrapper {
    max-width: 1400px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 60px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef1f6;
    font-family: 'Montserrat', sans-serif;
}

.enennen-cons-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.enennen-cons-header::before,
.enennen-cons-header::after {
    content: "";
    width: 220px;
    height: 1px;
    background: #E5E7EB;
}

.enennen-cons-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #062A87;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.enennen-cons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.enennen-cons-col {
    padding: 0 20px;
    border-right: 1px solid #E5E7EB;
    text-align: center;
}

.enennen-cons-col:last-child {
    border-right: none;
}

.enennen-cons-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #062A87;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 15px rgba(6, 42, 135, 0.15);
}

.enennen-cons-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.enennen-cons-item-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #062A87;
    line-height: 1.4;
    margin: 0;
}

.enennen-cons-description {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-top: 15px;
    font-weight: 500;
}

/* Standards Panel */
.enennen-cons-standards {
    background: #F8FAFC;
    border: 1px solid #E6EBF2;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

.enennen-cons-standards-title {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    color: #062A87;
    text-align: center;
    margin-bottom: 30px;
}

.enennen-cons-standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.enennen-cons-standard-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enennen-cons-standard-item img {
    width: 60px;
    height: 60px;
}

.enennen-cons-standard-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: #062A87;
    margin: 0 0 5px;
}

.enennen-cons-standard-text p {
    font-size: 15px;
    color: #4B5563;
    margin: 0;
}

/* CTA Banner */
.enennen-cons-cta {
    background: linear-gradient(90deg, #001B5E 0%, #062A87 50%, #001B5E 100%);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.enennen-cons-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enennen-cons-cta-icon {
    width: 58px;
    height: 58px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enennen-cons-cta-icon img {
    width: 30px;
    height: 30px;
}

.enennen-cons-cta-btn {
    background: #0D5BFF;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.enennen-cons-cta-btn:hover {
    background: #0048E5;
    color: white;
}

@media (max-width: 992px) {
    .enennen-cons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enennen-cons-col {
        border-right: none;
        padding-bottom: 30px;
    }
}

/* 45 */
.enn-audit-srv-section {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    padding: 60px 0;
}

.enn-audit-srv-container {
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    padding: 50px;
}

.enn-audit-srv-heading {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0B2D89;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.enn-audit-srv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 50px;
}

.enn-audit-srv-col {
    padding: 0 25px;
    border-right: 1px solid #E5E7EB;
}

.enn-audit-srv-col:last-child {
    border-right: none;
}

/* Image Cards */
.enn-audit-srv-img-card {
    width: 100%;
    height: 230px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Service Cards */
.enn-audit-srv-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0B2D89;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.enn-audit-srv-icon-box img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.enn-audit-srv-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0B2D89;
    text-align: center;
    line-height: 1.4;
}

.enn-audit-srv-divider {
    width: 60px;
    height: 4px;
    background: #2563EB;
    margin: 15px auto 20px;
    border-radius: 10px;
}

.enn-audit-srv-list {
    list-style: none;
    padding: 0;
}

.enn-audit-srv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1E293B;
    line-height: 1.6;
}

.enn-audit-srv-check {
    color: #2563EB;
    margin-top: 5px;
}

/* Standards Section */
.enn-audit-srv-standards {
    background: #F7F9FC;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
}

.enn-audit-srv-std-title {
    font-size: 30px;
    font-weight: 700;
    color: #0B2D89;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.enn-audit-srv-std-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.enn-audit-srv-std-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
}

.enn-audit-srv-std-divider {
    width: 1px;
    height: 100px;
    background: #DDE3EE;
}

.enn-audit-srv-std-text h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0B2D89;
    margin-bottom: 5px;
}

.enn-audit-srv-std-text p {
    font-size: 18px;
    color: #334155;
    margin: 0;
}

/* CTA Banner */
.enn-audit-srv-cta {
    background: linear-gradient(90deg, #001B74 0%, #002A9E 50%, #0038D8 100%);
    border-radius: 15px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enn-audit-srv-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enn-audit-srv-cta-icon {
    width: 55px;
    height: 55px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enn-audit-srv-cta-icon i {
    color: #2563EB;
    font-size: 24px;
}

.enn-audit-srv-cta-text h5 {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.enn-audit-srv-btn {
    background: #2563EB;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.enn-audit-srv-btn:hover {
    background: #1D4ED8;
    color: white;
}

/* ban */
.ban-con {
    width: 40px;
}

.kb-icon {
    width: 30px;
}

/* dropdown sub menu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
    transform: rotate(-90deg);
}


/* contact */
.enn-page-header {
    background: #2c3e50;
    color: white;
    padding: 4rem 0;
}

.enn-contact-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.enn-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.enn-contact-box h6 {
    color: #062A87;
}
.enn-icon-wrapper {
    color: #062A87;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.enn-form-container {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.enn-input-custom {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.enn-btn-submit {
    background-color: #062A87;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    transition: background 0.3s;
}

.enn-btn-submit:hover {
    background-color: #0b5ed7;
}

.enn-map-box {
    height: 300px;
    background-color: #e9ecef;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #adb5bd;
    color: #6c757d;
}

/* blog */
.enn-hub-hero-gradient-wrapper {
    background: linear-gradient(135deg, #031A63, #021042);
    color: #ffffff;
    padding: 5rem 0;
}

.enn-hub-breadcrumb-navigation-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.enn-hub-hero-main-headline-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.enn-hub-featured-article-card-container {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: none;
    margin-top: -2rem;
    background: #ffffff;
    color: #1e293b;
}

.enn-hub-individual-blog-post-item-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.enn-hub-individual-blog-post-item-card:hover {
    transform: translateY(-10px);
}

.enn-hub-category-badge-pilled-design {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
}

.enn-hub-trending-topics-dark-section-container {
    background-color: #031A63;
    color: #ffffff;
    padding: 5rem 0;
}

.enn-hub-topic-card-individual-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.25rem;
    transition: 0.3s;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enn-hub-topic-card-individual-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.enn-hub-newsletter-glassmorphism-box-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 1.5rem;
}

.enn-hub-downloadable-resource-list-item-wrapper {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    transition: 0.3s;
}

.enn-hub-downloadable-resource-list-item-wrapper:hover {
    border-color: #062A87;
    background-color: #f8fafc;
}

.enn-hub-footer-call-to-action-gradient-zone {
    background: linear-gradient(135deg, #031A63, #021042);
    padding: 5rem 0;
    color: #ffffff;
}

.enn-hub-primary-action-button-styled {
    background-color: #062A87;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 700;
    transition: 0.3s;
}

.enn-hub-primary-action-button-styled:hover {
    background-color: #0b5ed7;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.enn-hub-insight-list-item-row-divider {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

/* blog detail */
/* UNIQUE NAMESPACED CLASSES - NO ROOT OR BODY CSS */
.enn-editorial-blog-detail-hero-section-container {
    background: #031A63;
    color: #ffffff;
    padding: 5rem 0;
}

.enn-editorial-blog-detail-breadcrumb-navigation-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.enn-editorial-blog-detail-article-headline-title-text {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.enn-editorial-blog-detail-article-meta-info-wrapper {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.enn-editorial-blog-detail-main-article-content-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    margin-top: -4rem;
}

.enn-editorial-blog-detail-featured-media-frame {
    background: #e2e8f0;
    border-radius: 1.5rem;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.enn-editorial-blog-detail-sidebar-sticky-widget-container {
    position: sticky;
    top: 2rem;
}

.enn-editorial-blog-detail-sidebar-card-box-styling {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.enn-editorial-blog-detail-related-article-thumbnail-entry {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.enn-editorial-blog-detail-related-article-thumbnail-entry:last-child {
    border-bottom: none;
}

.enn-editorial-blog-detail-consultation-banner-highlight-box {
    background: linear-gradient(135deg, #031A63, #021042);
    color: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    text-align: center;
}

.enn-editorial-blog-detail-action-button-primary-styled {
    background: #00d084;
    color: #021042;
    font-weight: 800;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.enn-editorial-blog-detail-action-button-primary-styled:hover {
    background: #00b372;
}


/* wheel */
.wheel-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 100px 0; */
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #162238;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Decorative ambient background blur */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 36, 229, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.wheel-container {
    width: 100%;
    padding-bottom: 100%;
    /* Perfect 1:1 Aspect Ratio */
    position: relative;
    /* Deep, premium shadow */
    /* filter: drop-shadow(0 30px 60px rgba(10, 61, 145, 0.12)); */
}

.wheel-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    /* Prevents shadow clipping at the absolute bounds */
}

.segment-group {
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: 450px 450px;
}

.segment-bg {
    fill: #FFFFFF;
    stroke: #FFFFFF;
    stroke-width: 6;
    /* Reduced thickness for a tighter gap */
    stroke-linejoin: round;
    transition: fill 0.4s ease;
}

.segment-border {
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 8;
    /* Reduced thickness for a tighter gap */
    stroke-linejoin: round;
    pointer-events: none;
}

.segment-image {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
    transform-origin: 450px 450px;
    opacity: 0.95;
}

.segment-group:hover {
    transform: scale(1.03);
    /* Softer scale to prevent clipping */
}

.segment-group:hover .segment-bg {
    fill: #FAFCFF;
}

.segment-group:hover .segment-image {
    transform: scale(1.06);
    /* Softer internal image zoom */
    opacity: 1;
}

.svg-icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 32px;
    fill: #0A3D91;
    /* Primary Blue */
    dominant-baseline: central;
    transition: fill 0.3s ease;
}

.segment-group:hover .svg-icon {
    fill: #0024E5;
    /* Electric Blue */
}

.svg-icon-overlay {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
    fill: #FFFFFF;
    text-anchor: middle;
    dominant-baseline: central;
}

.svg-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    fill: #0A3D91;
    /* Primary Blue */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.svg-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    fill: #5A6B8A;
    /* Text Muted */
}

/* Center Hub */
.center-hub {
    pointer-events: none;
}

.mobile-cards-container {
    display: none;
    position: relative;
    z-index: 1;
}

.mobile-industry-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E8F0F8;
    /* Card Border */
    box-shadow: 0 15px 35px rgba(10, 61, 145, 0.06);
    margin-bottom: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 61, 145, 0.1);
}

.mobile-card-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.mobile-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mobile-industry-card:hover .mobile-card-img-wrap img {
    transform: scale(1.08);
}

/* Image bottom fade to white for the text area */
.mobile-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Floating overlapping badge for mobile icons */
.mobile-icon-badge {
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0A3D91;
    /* Primary Blue */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .wheel-wrapper {
        max-width: 650px;
    }

    .svg-title {
        font-size: 15px;
    }

    .svg-desc {
        font-size: 11px;
    }

    .svg-icon {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .wheel-wrapper {
        display: none;
    }

    .mobile-cards-container {
        display: block;
    }

    .wheel-section {
        padding: 60px 0;
    }
}


/* swiper */
/* Swiper Container Spacing */
.swiper-container-wrapper {
    position: relative;
    padding: 20px 40px 60px 40px;
    /* Space for nav arrows and pagination */
}

/* Feature Card Styling */
.feature-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Dark overlay to make text readable over images */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.85) 0%, rgba(36, 59, 85, 0.85) 100%);
    z-index: 1;
}

/* Content inside the card */
.feature-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #66b2ff;
    /* Nice blue accent color */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-title {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.feature-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Customizing Swiper Navigation and Pagination */
.swiper-button-next,
.swiper-button-prev {
    color: #062A87;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background-color: #062A87;
}

/* about page ban */
.executive-banner {
    position: relative;
    height: 320px;
    /* Small, focused height */
    background-color: #050b14;
    /* Deep, authoritative corporate navy */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* High-end corporate glass architecture image */
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.5;
    /* Kept low to ensure text readability */
    transform: scale(1.05);
    /* Very slow, premium pan effect so it doesn't feel static */
    animation: subtlePan 25s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes subtlePan {
    0% {
        transform: scale(1.05) translateY(0);
    }

    100% {
        transform: scale(1.1) translateY(-2%);
    }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    /* Blends deep navy on the left to a richer royal/business blue on the right */
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(20, 50, 120, 0.8) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.banner-title {
    margin: 0;
    color: #ffffff;
    font-size: 3rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    /* Start invisible for the fade-in animation */
    opacity: 0;
    transform: translateY(20px);
    animation: elegantFadeUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

/* Thin elegant weight for the first word */
.banner-title span.light {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

/* Heavy, grounded weight for the second word */
.banner-title span.bold {
    font-weight: 800;
    color: #ffffff;
}

.banner-accent-line {
    height: 3px;
    width: 0;
    /* Starts at 0 width */
    background: #3b82f6;
    /* Bright corporate accent blue */
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    animation: drawLine 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
}

@keyframes elegantFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes drawLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 80px;
        opacity: 1;
    }

    /* Expands to exactly 80px */
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    .banner-title {
        font-size: 1.9rem;
        letter-spacing: 4px;
    }

    .executive-banner {
        height: 260px;
    }
}


/* partner */
/* =========================================
           BASE WRAPPER (Replacing body CSS)
           ========================================= */
.consultant-wrapper {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
}

/* =========================================
           MAIN PAGE TRIGGER CARDS
           ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #0A2F73;
    font-weight: 800;
    letter-spacing: -1px;
}

.profile-trigger-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(10, 47, 115, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.profile-trigger-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 47, 115, 0.1);
    border-color: #1a4da8;
}

.trigger-banner {
    height: 120px;
    background: linear-gradient(135deg, #0A2F73 0%, #1a4da8 100%);
}

.trigger-avatar-wrap {
    width: 120px;
    height: 120px;
    margin: -60px auto 15px;
    border-radius: 50%;
    border: 5px solid #fff;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.trigger-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-view {
    background-color: #EAF4FF;
    color: #0A2F73;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px;
    margin: auto 20px 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-trigger-card:hover .btn-view {
    background-color: #0A2F73;
    color: white;
}

/* =========================================
           MODAL & POPUP STYLING
           ========================================= */
.modal-xl {
    max-width: 1300px;
}

.modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(10, 47, 115, 0.6);
    opacity: 1;
}

.btn-close-custom {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1050;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-close-custom:hover {
    background: #0A2F73;
    color: white;
    transform: rotate(90deg);
}

/* =========================================
           SLIDE CONTENT STYLING (Inside Modal)
           ========================================= */
.slide-content {
    background-color: #ffffff;
    position: relative;
}

.profile-title {
    color: #0A2F73;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.profile-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    background-color: #1a4da8;
    border-radius: 5px;
}

/* Info Blocks */
.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.icon-circle-lg {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #0A2F73;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Stat Rows */
.stat-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: #f8fafc;
    border-left: 4px solid #0A2F73;
    border-radius: 0 12px 12px 0;
}

.stat-row .icon-circle-p {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0A2F73;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Lists */
.check-list,
.dot-list,
.grid-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '\F26A';
    /* Bootstrap Check Circle Fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: #1a4da8;
    font-size: 1.1rem;
}

.dot-list {
    padding-left: 20px;
}

.dot-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.dot-list li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: #1e293b;
    font-size: 1.2rem;
    top: -2px;
}

.grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.grid-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: #0A2F73;
    font-size: 0.7rem;
}

.text-navy-bold {
    color: #0A2F73;
    font-weight: 700;
}

/* Presentation Card (Right Column) */
.presentation-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card-blue-header {
    background: #0A2F73;
    height: 130px;
    border-radius: 20px 20px 0 0;
}

.card-avatar-wrap {
    width: 170px;
    height: 170px;
    margin: -85px auto 15px;
    position: relative;
}

.card-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Values Grid */
.value-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 30px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 65px;
}

.value-icon-circle {
    font-size: 1.5rem;
    color: #0A2F73;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.value-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    color: #334155;
}

.industry-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 2rem;
    gap: 15px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-item i {
    color: #0A2F73;
    font-size: 1.4rem;
}

.industry-item span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 80px;
}

.side-graphics {
    /* background-color: #EAF4FF; */
    border-radius: 20px;
    /* padding: 20px; */
    height: 100%;
}

@media (max-width: 991px) {
    .side-graphics {
        margin-top: 2rem;
    }

    .btn-close-custom {
        top: 15px;
        right: 15px;
    }
}

/* insfrastructure */
.corporatetete-wrapper {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
    min-height: 100vh;
    padding: 5rem 0;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.corporatetete-wrapper h1,
.corporatetete-wrapper h2,
.corporatetete-wrapper h3,
.corporatetete-wrapper .number-stat {
    font-family: 'Space Grotesk', sans-serif;
}

/* Universal Card Class for future scalability */
.strength-card {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(10, 47, 115, 0.04);
    border: 1px solid rgba(10, 47, 115, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    height: 100%;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(10, 47, 115, 0.12);
}

/* Specific Backgrounds */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0A2F73 0%, #1e3a8a 100%);
    color: white;
}

.bg-light-blue {
    background: #e0f2fe;
}

.number-stat {
    font-size: 6rem;
    line-height: 1;
    font-weight: 900;
    background: -webkit-linear-gradient(#93c5fd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hall-icon {
    font-size: 4.5rem;
    color: #0284c7;
    margin-bottom: 1.5rem;
    display: block;
}

.hall-icon2 {
    font-size: 4.5rem;
    background: -webkit-linear-gradient(#93c5fd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
}

/* Background Icons for depth */
.bg-icon {
    position: absolute;
    top: -2rem;
    right: -2rem;
    font-size: 16rem;
    transition: all 0.5s ease;
}

.bg-icon-navy {
    color: rgba(255, 255, 255, 0.05);
}

.bg-icon-light {
    color: rgba(2, 132, 199, 0.05);
}

.strength-card:hover .bg-icon {
    transform: scale(1.05) rotate(-5deg);
}

/* business vertical section */
.e-v-wrap {
    padding: 4rem 0;
    overflow: hidden;
    background: #ffffff;
}

.e-v-title {
    font-weight: 800;
    margin-bottom: 3rem;
    color: #021042;
}

.e-v-frame {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.e-v-track {
    display: flex;
    width: max-content;
    animation: e-v-scroll 25s linear infinite;
    gap: 5rem;
    align-items: center;
}

.e-v-track:hover {
    animation-play-state: paused;
}

.e-v-item {
    text-align: center;
    min-width: 160px;
    color: #64748b;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.e-v-item:hover {
    color: #031A63;
    transform: translateY(-5px);
}

@keyframes e-v-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* new */
.bus-icon {
    width: 160px;
    height: auto;
}


/* team building */

.esl-wrap {
    position: relative;
    width: 100%;
    height: 65vh;
    /* Reduced height */
    min-height: 500px;
    /* Reduced from 700px */
    max-height: 700px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image & Fade Overlays */
.esl-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    /* Using a high-quality mountain climbing teamwork silhouette image */
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
}

.esl-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 40%, rgba(255, 255, 255, 0.8) 70%, transparent 100%);
    z-index: 2;
}

.esl-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 0%, rgba(214, 234, 255, 0.6) 0%, transparent 40%);
    z-index: 3;
}

/* Top Right Badge */
.esl-bdg {
    position: absolute;
    top: 30px;
    /* Moved up slightly */
    right: 0;
    background-color: #002A5C;
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 15px 30px 15px 50px;
    /* Scaled down padding */
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
}

.esl-icon {
    width: 50px;
    /* Reduced from 65px */
    height: 50px;
    background-color: #0d5dd6;
    /* Bright blue inner circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    /* Reduced from 1.8rem */
    margin-right: 15px;
    /* Reduced from 25px */
    border: 2px solid #ffffff;
    /* Thinner border */
    flex-shrink: 0;
}

.esl-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    /* Reduced from 1.3rem */
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.esl-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    /* Reduced from 1.05rem */
    line-height: 1.3;
    opacity: 0.95;
}

/* Diagonal Bottom Right Accents */
.esl-acc {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 250px;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
}

.esl-str {
    position: absolute;
    background-color: #002A5C;
    transform: rotate(-32deg);
}

.esl-str-1 {
    width: 35px;
    height: 500px;
    right: 15px;
    top: 0px;
}

.esl-str-2 {
    width: 75px;
    height: 500px;
    right: -40px;
    top: 0px;
}

.esl-str-3 {
    width: 20px;
    height: 500px;
    right: 75px;
    top: 0px;
    opacity: 0.85;
}

/* Left Content Area */
.esl-cnt {
    position: relative;
    z-index: 5;
    padding-left: 8vw;
    /* Fluid padding */
    max-width: 800px;
}

/* Typography */
.esl-h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    /* Reduced significantly */
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.esl-nv {
    color: #002A5C;
}

.esl-gr {
    color: #277A2B;
}

.esl-div {
    width: 80px;
    /* Reduced width */
    height: 3px;
    /* Reduced thickness */
    background-color: #002A5C;
    margin: 20px 0;
    /* Reduced margin */
    border: none;
    opacity: 1;
}

.esl-h2 {
    color: #002A5C;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    /* Reduced */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    /* Reduced margin */
    text-transform: uppercase;
}

/* Quote Section */
.esl-qt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    /* Reduced */
    font-weight: 500;
    color: #333333;
    line-height: 1.5;
    max-width: 500px;
}

.esl-qtm {
    color: #277A2B;
    font-size: 2.2rem;
    /* Reduced */
    line-height: 0.7;
    font-family: Georgia, serif;
    font-weight: 900;
    margin-top: 5px;
}

.esl-qtm-e {
    color: #277A2B;
    font-size: 2.2rem;
    /* Reduced */
    line-height: 0.7;
    font-family: Georgia, serif;
    font-weight: 900;
    align-self: flex-end;
    margin-bottom: -10px;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .esl-bg {
        width: 100%;
        opacity: 0.3;
    }

    .esl-fade {
        width: 100%;
        background: linear-gradient(to right, #ffffff 30%, rgba(255, 255, 255, 0.7) 100%);
    }

    .esl-bdg {
        top: 0;
        width: 100%;
        padding: 10px 15px;
        justify-content: center;
        clip-path: none;
    }

    .esl-cnt {
        padding-top: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .esl-acc {
        opacity: 0.3;
    }
}

/* tb sec 2 */
.esl-f-sec {
    padding: 4rem 2%;
    background-color: #ffffff;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.esl-f-hdr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.esl-f-line {
    flex-grow: 1;
    height: 1px;
    background-color: #002A5C;
    max-width: 350px;
    position: relative;
}

/* Add dots at the ends of the header lines */
.esl-f-line::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #002A5C;
    border-radius: 50%;
    top: -1.5px;
}

.esl-f-line:first-child::before {
    left: 0;
}

.esl-f-line:last-child::before {
    right: 0;
}

.esl-f-htxt {
    color: #002A5C;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0 25px;
    letter-spacing: 1px;
}

.esl-f-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.esl-f-col {
    padding: 0 15px;
    position: relative;
}

/* Vertical line separators between columns */
.esl-f-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #d1d5db;
    /* Light gray separator */
}

.esl-f-img {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    display: block;
    object-fit: contain;
}

.esl-f-h3 {
    color: #002A5C;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 12px;
    height: 2.5em;
    /* Keeps titles aligned even if lines vary */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.esl-f-p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {

    /* Grid adjustments */
    .esl-f-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
    }

    .esl-f-col:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Grid adjustments */
    .esl-f-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    .esl-f-col:nth-child(even)::after {
        display: none;
    }

    .esl-f-col:nth-child(odd)::after {
        display: block;
    }

    .esl-f-line {
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .esl-f-grid {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .esl-f-col::after {
        display: none !important;
    }

    .esl-f-line {
        max-width: 40px;
    }

    .esl-f-htxt {
        font-size: 1.2rem;
        margin: 0 15px;
    }
}

/* tb sec 3 */
/* Container Setup */
.esll-x-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2%;
    background-color: #ffffff;
}

/* Top Grid Layout */
.esll-x-grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Columns */
.esll-x-col-l {
    padding-top: 10px;
}

.esll-x-col-r {
    padding-top: 10px;
}

.esll-x-col-c {
    display: flex;
    justify-content: center;
}

/* Ribbon Headings */
.esll-x-ribbon-l,
.esll-x-ribbon-r {
    background-color: #0b3687;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    padding: 12px 25px;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

/* Slanted edges for ribbons */
.esll-x-ribbon-l {
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
    padding-right: 40px;
}

.esll-x-ribbon-r {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    padding-left: 40px;
    text-align: center;
}

/* Lists */
.esll-x-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esll-x-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Left List Specifics (Checkmarks) */
.esll-x-list-l li i {
    color: #0b3687;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Right List Specifics (Solid Circles) */
.esll-x-list-r li .esll-x-icon-circle {
    background-color: #0b3687;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* -------------------------------------
    Center Wheel Construction (CSS-Only)
    ------------------------------------- */
.esll-x-wheel-wrap {
    width: 380px;
    height: 380px;
    position: relative;
    border-radius: 50%;
    /* 5 slices at 72 degrees each */
    background: conic-gradient(from 0deg,
            #387C2B 0deg 72deg,
            /* Top Right: Green */
            #003282 72deg 144deg,
            /* Bot Right: Blue */
            #387C2B 144deg 216deg,
            /* Bot Mid: Green */
            #003282 216deg 288deg,
            /* Bot Left: Blue */
            #003282 288deg 360deg
            /* Top Left: Blue */
        );
}

/* White separator lines */
.esll-x-w-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 50%;
    background: #ffffff;
    transform-origin: bottom center;
    margin-left: -2px;
    /* Center perfectly */
    z-index: 2;
}

.esll-x-wl-1 {
    transform: rotate(0deg);
}

.esll-x-wl-2 {
    transform: rotate(72deg);
}

.esll-x-wl-3 {
    transform: rotate(144deg);
}

.esll-x-wl-4 {
    transform: rotate(216deg);
}

.esll-x-wl-5 {
    transform: rotate(288deg);
}

/* Positioning anchors for text segments */
.esll-x-w-anchor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 3;
}

/* Rotate anchor to middle of slice (36, 108, 180, 252, 324) and push outward by radius (130px) */
.esll-x-wa-1 {
    transform: rotate(36deg) translate(130px);
}

.esll-x-wa-2 {
    transform: rotate(108deg) translate(130px);
}

.esll-x-wa-3 {
    transform: rotate(180deg) translate(130px);
}

.esll-x-wa-4 {
    transform: rotate(252deg) translate(130px);
}

.esll-x-wa-5 {
    transform: rotate(324deg) translate(130px);
}

/* Inner text content (reverse rotated to stay upright) */
.esll-x-w-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    text-align: center;
    color: #ffffff;
    /* Rotate backward by the custom property passed in HTML */
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--r)));
}

.esll-x-w-content i {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.esll-x-w-content span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

/* Inner White Circle */
.esll-x-w-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.esll-x-c-t1 {
    color: #003282;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 5px;
}

.esll-x-c-t2 {
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

/* -------------------------------------
    Middle Banner (Stats/Icons)
    ------------------------------------- */
.esll-x-mid-bar {
    background-color: #0b3687;
    margin-top: 3.5rem;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.esll-x-mid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.esll-x-mid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.esll-x-mid-item:last-child {
    border-right: none;
}

.esll-x-mid-item i {
    font-size: 2.2rem;
    margin-right: 15px;
}

.esll-x-mid-txt {
    display: flex;
    flex-direction: column;
}

.esll-x-mid-t1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* -------------------------------------
    Bottom Tagline
    ------------------------------------- */
.esll-x-bot-cta {
    text-align: center;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esll-x-bot-line {
    height: 1px;
    background-color: #cbd5e1;
    flex-grow: 1;
    max-width: 150px;
}

.esll-x-bot-txt {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #003282;
    margin: 0 30px;
    letter-spacing: 0.5px;
}

.esll-x-bot-txt .esll-x-green {
    color: #387C2B;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .esll-x-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .esll-x-wheel-wrap {
        margin-top: 1rem;
    }

    .esll-x-col-c {
        order: -1;
    }

    /* Move wheel to top on small screens */
    .esll-x-mid-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    .esll-x-mid-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 650px) {
    .esll-x-mid-grid {
        grid-template-columns: 1fr;
    }

    .esll-x-mid-item {
        border-right: none;
        justify-content: flex-start;
        padding-left: 20%;
        margin-bottom: 1.5rem;
    }

    .esll-x-mid-item:last-child {
        margin-bottom: 0;
    }

    .esll-x-bot-txt {
        font-size: 1.3rem;
        margin: 0 15px;
    }

    .esll-x-wheel-wrap {
        transform: scale(0.85);
    }

    /* Scale down wheel to fit mobile */
}

/* banner 2 home 2 */
/* --- 1. Initial Page Load Animations --- */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.anim-up {
    animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.anim-right {
    animation: fadeSlideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.anim-left {
    animation: fadeSlideLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.7s;
}

/* --- 2. Continuous Micro-Animations --- */

/* Watermark Slow Drift */
@keyframes subtleDrift {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(0);
    }
}

.consult-watermark {
    font-size: clamp(30vw, 45vw, 50vw);
    font-weight: 800;
    color: rgba(220, 225, 240, 0.4);
    line-height: 0.8;
    letter-spacing: -2vw;
    top: -5%;
    left: -2%;
    user-select: none;
    z-index: -1;
    animation: subtleDrift 20s ease-in-out infinite;
}

/* Pulsing Sonar Dot */
@keyframes pulseDot {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(28, 54, 135, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(28, 54, 135, 0);
    }

    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(28, 54, 135, 0);
    }
}

.consult-pulse {
    width: 8px;
    height: 8px;
    background-color: #1c3687;
    animation: pulseDot 2s infinite;
}

/* Floating Decor Shape */
@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.consult-shape {
    width: 90px;
    height: 90px;
    background-color: #b4c4e8;
    border-radius: 24px;
    bottom: -25px;
    right: 10%;
    z-index: 3;
    opacity: 0.8;
    animation: floatShape 6s ease-in-out infinite;
}

/* --- 3. Interaction & Typography Elements --- */
.consult-txt-stroke {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    color: transparent;
    -webkit-text-stroke: 2px #1a1a1a;
    line-height: 1.1;
}

.consult-txt-solid {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    color: #1a1a1a;
    line-height: 1.1;
}

.consult-txt-highlight {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    color: #1c3687;
    line-height: 1.1;
}

/* Hover lift for the main text card */
.consult-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.consult-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

/* --- 4. Swiper Carousel Fixes & Animations --- */
.consult-slider-wrapper {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.consult-swiper {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.consult-swiper .swiper-slide {
    width: 280px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.8s ease, filter 0.8s ease, opacity 0.4s ease !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* Reveal ONLY the active and adjacent cards */
.consult-swiper .swiper-slide-active,
.consult-swiper .swiper-slide-next,
.consult-swiper .swiper-slide-prev {
    opacity: 1 !important;
    pointer-events: auto;
}

.consult-swiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.4);
}

/* Cinematic Background Zoom */
.consult-swiper .swiper-slide img {
    transition: transform 6s ease-out;
    /* Reset speed when inactive */
    transform: scale(1);
}

.consult-swiper .swiper-slide-active img {
    transform: scale(1.15);
    /* Zooms in smoothly while active */
    transition: transform 6s linear;
}

.consult-slide-grad {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

.consult-slide-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    color: #1c3687;
}

/* --- Staggered Slide Content Reveal --- */
/* Start hidden and pushed down */
.consult-swiper .swiper-slide .consult-slide-icon,
.consult-swiper .swiper-slide .consult-slide-title,
.consult-swiper .swiper-slide .consult-slide-desc {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Animate up ONLY when the slide is active, with cascading delays */
.consult-swiper .swiper-slide-active .consult-slide-icon {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.consult-swiper .swiper-slide-active .consult-slide-title {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.consult-swiper .swiper-slide-active .consult-slide-desc {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

@media (max-width: 991px) {
    .consult-swiper .swiper-slide {
        width: 240px;
        height: 350px;
    }
}


/* counter home 2 */
/* --- Section Scoped Theme --- */
#statsSection {
    font-family: 'Poppins', sans-serif;
    background-color: #0b0d10;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.top-accent-bar {
    border-top: 4px solid #0ea5e9;
}

/* --- Typography & Text Stroke Effects --- */
.text-light-blue {
    color: #b5c6e8;
}

.text-deep-blue {
    color: #2a52be;
}

.outline-white {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
}

.outline-blue {
    color: transparent;
    -webkit-text-stroke: 2px #2a52be;
}

/* --- Components --- */
.partner-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
}

.metric-card-dark {
    background-color: #191a1e;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.metric-card-blue {
    background-color: #263e8a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

/* Hover Interaction */
.metric-card-dark:hover,
.metric-card-blue:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.metric-icon {
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    color: #111111;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* --- 1. Continuous Live Animations --- */
@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.live-float {
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(38, 62, 138, 0.4);
    }

    70% {
        box-shadow: 0 0 20px 10px rgba(38, 62, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(38, 62, 138, 0);
    }
}

.live-glow {
    animation: pulseGlow 3s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.2);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(1);
    }
}

.live-beat {
    animation: heartbeat 2.5s infinite;
    color: #0ea5e9;
}

/* --- 2. Load-in Entrance Animations --- */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-up {
    opacity: 0;
    animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Stagger Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* --- 3. PURE CSS NUMBER COUNTERS --- */

/* Define custom integer properties for the browser to animate */
@property --num-1 {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

@property --num-2 {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

@property --num-3 {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

@property --num-4 {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

@property --num-5 {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

/* Keyframes pushing the values to their targets */
@keyframes countUp1 {
    to {
        --num-1: 2800;
    }
}

@keyframes countUp2 {
    to {
        --num-2: 18;
    }
}

@keyframes countUp3 {
    to {
        --num-3: 90;
    }
}

@keyframes countUp4 {
    to {
        --num-4: 19;
    }
}

@keyframes countUp5 {
    to {
        --num-5: 15;
    }
}

/* Generate the numbers via CSS pseudo-elements synced with the load-in delays */
.css-counter-2800::after {
    counter-reset: val1 var(--num-1);
    content: counter(val1);
    animation: countUp1 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

.css-counter-18::after {
    counter-reset: val2 var(--num-2);
    content: counter(val2);
    animation: countUp2 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

.css-counter-90::after {
    counter-reset: val3 var(--num-3);
    content: counter(val3);
    animation: countUp3 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.4s;
}

.css-counter-19::after {
    counter-reset: val4 var(--num-4);
    content: counter(val4);
    animation: countUp4 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

.css-counter-15::after {
    counter-reset: val5 var(--num-5);
    content: counter(val5);
    animation: countUp5 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.6s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem !important;
    }

    .card-number {
        font-size: 3rem !important;
    }
}

/* business vertical */
/* --- Section Scoped Theme --- */
#businessVerticals {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    padding: 80px 0;
    overflow: hidden;
}

/* --- 1. Continuous Live Animations --- */

/* A: Liquid Gradient Flow for the Title */
@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.bv-section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;

    /* Extended gradient for flowing animation */
    background: linear-gradient(to bottom, #d2dcf5 0%, #153fad 50%, #d2dcf5 100%);
    background-size: 100% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;

    /* Applies the continuous flow */
    animation: gradientFlow 6s ease-in-out infinite;
}

/* B: Organic Levitation for Icons */
@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Apply baseline float to the wrapper to prevent conflict with hover scales */
.bv-icon-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    animation: iconFloat 4s ease-in-out infinite;
}

/* Create organic staggering so they don't all float at the exact same time */
.col:nth-child(even) .bv-icon-wrapper {
    animation-duration: 5s;
    animation-delay: 1s;
}

.col:nth-child(3n) .bv-icon-wrapper {
    animation-duration: 4.5s;
    animation-delay: 0.5s;
}

.col:nth-child(5n) .bv-icon-wrapper {
    animation-duration: 5.5s;
    animation-delay: 1.5s;
}

/* --- Card Styling --- */
.bv-card {
    background-color: #ffffff;
    border: 1px solid #d4def0;
    border-radius: 20px;
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    aspect-ratio: 1 / 1;
}

.bv-card:hover {
    transform: translateY(-8px);
    border-color: #2a52be;
    box-shadow: 0 15px 30px rgba(42, 82, 190, 0.08);
}

/* Placeholder Icon Styling */
.bv-icon-wrapper i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #7496ff 0%, #2a52be 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 6px rgba(42, 82, 190, 0.2));
    transition: transform 0.3s ease;
}

.bv-card:hover .bv-icon-wrapper i {
    transform: scale(1.15);
    /* Slightly bigger pop on hover */
}

/* Card Text */
.bv-title {
    color: #2a52be;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

/* --- 2. Initial Entrance Animations --- */
@keyframes scaleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.anim-pop {
    opacity: 0;
    animation: scaleFadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered load-in delays */
.d-1 {
    animation-delay: 0.1s;
}

.d-2 {
    animation-delay: 0.15s;
}

.d-3 {
    animation-delay: 0.2s;
}

.d-4 {
    animation-delay: 0.25s;
}

.d-5 {
    animation-delay: 0.3s;
}

.d-6 {
    animation-delay: 0.35s;
}

.d-7 {
    animation-delay: 0.4s;
}

.d-8 {
    animation-delay: 0.45s;
}

.d-9 {
    animation-delay: 0.5s;
}

.d-10 {
    animation-delay: 0.55s;
}

.d-11 {
    animation-delay: 0.6s;
}

.d-12 {
    animation-delay: 0.65s;
}

.d-13 {
    animation-delay: 0.7s;
}

.d-14 {
    animation-delay: 0.75s;
}

.d-15 {
    animation-delay: 0.8s;
}

.d-16 {
    animation-delay: 0.85s;
}

.d-17 {
    animation-delay: 0.9s;
}

.d-18 {
    animation-delay: 0.95s;
}

/* Responsive Grid Adjustments */
@media (max-width: 575px) {
    .bv-card {
        padding: 15px 10px;
        aspect-ratio: auto;
        min-height: 140px;
    }

    .bv-icon-wrapper i {
        font-size: 2.5rem;
    }

    .bv-title {
        font-size: 0.65rem;
    }

    .bv-section-title {
        font-size: 2rem;
    }
}


/* our service slider */
.enn-srv-container-root {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.enn-srv-section {
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, transparent 50%, #e2e6f2 50%),
        linear-gradient(to right, #e2e6f2 50%, transparent 50%);
    background-position: top, bottom;
    background-size: 100% 50%, 100% 50%;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

/* --- Typography --- */
.enn-srv-heading {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.enn-srv-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #111111;
    font-weight: 800;
}

.enn-srv-solid {
    color: #111111;
    font-weight: 800;
}

/* --- Slider Fixes (Ensures no bleeding) --- */
.enn-srv-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    /* This keeps the slider inside the grid */
    padding: 20px 0;
}

.enn-srv-swiper {
    width: 100%;
    padding: 20px 0;
}

.enn-srv-swiper .swiper-slide {
    width: 290px;
    height: 400px;
}

.enn-srv-card {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.enn-srv-card:hover {
    transform: translateY(-10px);
}

.enn-srv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enn-srv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
}

.enn-srv-card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* --- Buttons --- */
.enn-srv-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 5px 5px 5px 18px;
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
}

.enn-srv-btn-circle {
    background-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

/* --- Nav Buttons --- */
.enn-srv-nav {
    background-color: #ffffff;
    color: #111111;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.enn-srv-nav:hover {
    background-color: #111111;
    color: #ffffff;
}

@media (max-width: 768px) {
    .enn-srv-heading {
        font-size: 2rem;
    }

    .enn-srv-swiper .swiper-slide {
        width: 260px;
        height: 360px;
    }
}