html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111111;

    overflow-x: hidden;
}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: 'Inter', sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.7;

    font-size: 16px;

    overflow-x: hidden;

}

a {

    text-decoration: none;

    transition: var(--transition);

}

img {

    max-width: 100%;

    height: auto;

}

section {

    padding: 100px 0;

}


/*==================================================
    HEADER
==================================================*/

.eg-header {

    position: fixed;

    top: 12px;

    left: 0;

    width: 100%;

    z-index: 999;

    padding-bottom: 20px;

}

.eg-header-wrapper {

    position: relative;

    height: var(--eg-header-height);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: clamp(10px, 1.8vw, 30px);

    padding: 0 clamp(16px, 2vw, 32px);

    background: var(--eg-header-bg);

    backdrop-filter: blur(var(--eg-header-blur));

    -webkit-backdrop-filter: blur(var(--eg-header-blur));

    border: var(--eg-header-border);

    border-radius: var(--eg-header-radius);

    box-shadow: var(--eg-header-shadow);

    transition: var(--eg-transition);

    max-width: 100%;

    box-sizing: border-box;

}

.eg-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}

.eg-logo img {

    display: block;

    height: 56px;

    width: auto;

    max-width: 220px;

    object-fit: contain;

    transition: height .35s ease;

}

.eg-navigation {

    display: flex;

    justify-content: center;

    align-items: center;

    flex: 1;

    min-width: 0;

}

.eg-menu {

    display: flex;

    align-items: center;

    gap: clamp(8px, 1.25vw, 20px);

    list-style: none;

    margin: 0;

    padding: 0;

    flex-wrap: nowrap;

}

.eg-menu a {

    position: relative;

    display: inline-block;

    color: var(--eg-text);

    text-decoration: none;

    font-size: clamp(13px, 0.92vw, 15.5px);

    font-weight: 500;

    transition: var(--eg-transition);

    white-space: nowrap;

}

.eg-menu a {

    position: relative;

    display: inline-block;

    color: var(--eg-text);

    text-decoration: none;

    font-size: 16px;

    font-weight: 500;

    transition: var(--eg-transition);

}


.eg-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 100%;

    height: 2px;

    background: #000;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;

}

.eg-menu a:hover::after,

.eg-menu a.active::after {

    transform: scaleX(1);

}

.eg-menu a:hover {

    color: #000;

}


.eg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    min-height: 52px;
    padding: 16px 34px;
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000 !important;
    outline: none !important;
    border-radius: var(--eg-btn-radius);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: var(--eg-transition);
}

.eg-btn:hover {
    color: #ffffff;
    border-color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: var(--eg-shadow);
}

.eg-mobile-toggle {

    display: none;

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: #fff;

    box-shadow: var(--eg-shadow);

    cursor: pointer;

}

.eg-mobile-toggle i {

    font-size: 20px;

}

/*==================================================
HEADER ACTIONS
==================================================*/

.eg-header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}

.eg-social-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid var(--eg-border);

    border-radius: 50px;

    background: #fff;

    color: var(--eg-text);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;

}

.eg-social-btn:hover {

    color: var(--eg-primary);

    border-color: var(--eg-primary);

    transform: translateY(-2px);

    text-decoration: none;

}

.eg-social-btn i {

    font-size: 16px;

}

.eg-social-btn .fa-linkedin-in {

    color: #0A66C2;

}

.eg-social-btn .fa-whatsapp {

    color: #25D366;

}

/* WhatsApp Pulse Animation */

@keyframes egWhatsappPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }

}

.eg-whatsapp-btn .fa-whatsapp {

    animation: egWhatsappPulse 1.8s infinite;

}

@keyframes egLinkedinPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }

}

.eg-linkedin-btn .fa-linkedin-in {

    animation: egLinkedinPulse 1.8s infinite;

}

/*==================================================
HEADER CTA BUTTON
==================================================*/

.eg-header-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    height: 48px;

    padding: 0 18px;

    background: #000;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    transition: all .3s ease;

}

.eg-header-btn:hover {

    background: #111;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

    text-decoration: none;

}

.eg-header-btn i {

    font-size: 16px;

}

/*==================================================
    HEADER SCROLL
==================================================*/

.eg-header {

    transition:
        top .35s ease,
        background .35s ease,
        box-shadow .35s ease;

}

.eg-header.eg-header-scrolled {

    top: 12px;

}

.eg-header.eg-header-scrolled .eg-header-wrapper {

    height: 78px;

    box-shadow: 0 16px 45px rgba(0, 0, 0, .12);

    background: rgba(255, 255, 255, .94);

}

.eg-header.eg-header-scrolled .eg-logo img {

    height: 56px;

    /* Logo stays consistent at 56px whether scrolled or not */

}

.eg-menu a:focus-visible,
.eg-btn:focus-visible,
.eg-mobile-toggle:focus-visible {

    outline: 2px solid #000;

    outline-offset: 4px;

}

/*==================================================
    HERO
==================================================*/

.eg-hero {

    padding: 170px 0 120px;
    background: var(--eg-bg);

}

.eg-hero-content {

    max-width: 620px;

}

.eg-hero-tag {

    display: inline-block;

    margin-bottom: 20px;

    align-items: center;

    padding: 10px 20px;

    border: 1px solid #e5e5e5;

    border-radius: 999px;

    background: #fff;

    color: #111;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.eg-hero-content h1 {

    font-size: 64px;

    font-weight: 700;

    line-height: 1.1;

    color: #000;

    margin-bottom: 25px;

}

.eg-hero-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 40px;

}

.eg-hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.eg-btn-outline,
.eg-btn.eg-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 34px;

    border: 2px solid #000000 !important;

    border-radius: 999px;

    background: #ffffff !important;

    color: #000000 !important;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    line-height: 1;

    box-sizing: border-box;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);

    transition: all .35s ease;

    cursor: pointer;

}

.eg-btn-outline:hover,
.eg-btn.eg-btn-outline:hover {

    background: #000000 !important;

    color: #ffffff !important;

    border-color: #000000 !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);

}

/*==================================================
    PRIMARY BUTTON
==================================================*/

.eg-btn-primary,
.eg-btn.eg-btn-primary,
.eg-btn:not(.eg-btn-outline):not(.eg-btn-see-live):not(.eg-btn-see-live-hero) {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 34px;

    background: #000000 !important;

    color: #ffffff !important;

    border: 2px solid #000000 !important;

    border-radius: 999px;

    font-size: 16px;

    font-weight: 600;

    line-height: 1;

    box-sizing: border-box;

    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    transition: all .35s ease;

    cursor: pointer;

}

.eg-btn-primary:hover,
.eg-btn.eg-btn-primary:hover,
.eg-btn:not(.eg-btn-outline):not(.eg-btn-see-live):not(.eg-btn-see-live-hero):hover {

    background: #ffffff !important;

    color: #000000 !important;

    border-color: #000000 !important;

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}


.eg-hero-image {

    display: flex;

    justify-content: center;

    align-items: center;

}

.eg-hero-image img {

    width: 100%;

    max-width: 620px;

    height: auto;

    object-fit: contain;

}


/*==================================================
    HOME - STATISTICS
==================================================*/

.eg-stats {

    padding: 80px 0 100px;

}

.eg-stats-wrapper {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;

}

.eg-stat-item {

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 24px;

    padding: 45px 35px;

    text-align: left;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

    transition: var(--eg-transition);

    height: 100%;

}

.eg-stat-item:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .10);

}

.eg-stat-number {

    display: block;

    font-size: 52px;

    font-weight: 800;

    color: #000;

    line-height: 1;

    margin-bottom: 20px;

}

.eg-stat-item h4 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

    color: #000;

}

.eg-stat-item p {

    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.8;

}

/*==================================================
    HOME - SERVICES
==================================================*/

.eg-services {

    padding: 100px 0;

    background: #f8f9fb;

}

.eg-section-heading {

    max-width: 720px;

    margin: 0 auto 70px;

    text-align: center;

}

.eg-section-heading span {

    display: inline-block;

    margin-bottom: 15px;

    padding: 10px 20px;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #000;

}

.eg-section-heading h2 {

    font-size: 48px;

    font-weight: 700;

    margin-bottom: 20px;

    color: #000;

}

.eg-section-heading p {

    font-size: 17px;

    line-height: 1.8;

    color: #666;

}

.eg-services-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

}

.eg-service-card {

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 24px;

    padding: 40px;

    transition: var(--eg-transition);

    height: 100%;

}

.eg-service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .08);

}

.eg-service-icon {

    width: 72px;

    height: 72px;

    border-radius: 18px;

    background: #000;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin-bottom: 30px;

}

.eg-service-card h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;

}

.eg-service-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;

}

.eg-service-card a {

    text-decoration: none;

    color: #000;

    font-weight: 600;

}

.eg-service-card a i {

    margin-left: 8px;

    transition: var(--eg-transition);

}

.eg-service-card:hover a i {

    margin-left: 14px;

}

/*==================================================
    HOME - WHY US
==================================================*/

.eg-why-us {

    padding: 110px 0;

}

.eg-why-image {

    border-radius: 30px;

    overflow: hidden;

}

.eg-why-image img {

    width: 100%;

    display: block;

}

.eg-section-badge {

    display: inline-flex;

    align-items: center;

    width: fit-content;

    max-width: fit-content;

    align-self: flex-start;

    padding: 8px 18px;

    border: 1px solid #e5e5e5;

    border-radius: 999px;

    font-size: 12.5px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;

    background: #fff;

    white-space: nowrap;

}

.eg-why-content h2 {

    font-size: 46px;

    font-weight: 700;

    margin-bottom: 25px;

    line-height: 1.2;

}

.eg-why-content p {

    color: #666;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 35px;

}

.eg-why-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

}

.eg-why-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border: 1px solid #ececec;

    border-radius: 18px;

    background: #fff;

    transition: var(--eg-transition);

}

.eg-why-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

.eg-why-item i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #000;

    color: #fff;

    flex-shrink: 0;

}

.eg-why-item span {

    font-weight: 600;

    color: #222;

}

/*==================================================
    HOME - PORTFOLIO
==================================================*/

.eg-portfolio {

    padding: 110px 0;

    background: #f8f9fb;

}

.eg-portfolio-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.eg-portfolio-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid #ececec;

    transition: var(--eg-transition);

}

.eg-portfolio-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);

}

.eg-portfolio-image {

    overflow: hidden;

}

.eg-portfolio-image img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: .45s;

}

.eg-portfolio-card:hover img {

    transform: scale(1.06);

}

.eg-portfolio-content {

    padding: 30px;

}

.eg-portfolio-content span {

    display: inline-block;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.eg-portfolio-content h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;

}

.eg-portfolio-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}

.eg-portfolio-content a {

    text-decoration: none;

    color: #000;

    font-weight: 600;

}

.eg-portfolio-content a i {

    margin-left: 8px;

    transition: .3s;

}

.eg-portfolio-card:hover a i {

    margin-left: 14px;

}

/*==================================================
    HOME - INDUSTRIES
==================================================*/

.eg-industries {

    padding: 110px 0;

}

.eg-industries-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.eg-industry-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 24px;

    padding: 45px 30px;

    text-align: center;

    transition: var(--eg-transition);

}

.eg-industry-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .08);

}

.eg-industry-card i {

    font-size: 46px;

    margin-bottom: 25px;

    color: #000;

}

.eg-industry-card h3 {

    font-size: 22px;

    font-weight: 700;

    margin: 0;

}

/*==================================================
    HOME - PROCESS
==================================================*/

.eg-process {

    padding: 110px 0;

    background: #f8f9fb;

}

.eg-process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.eg-process-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 24px;

    padding: 40px 30px;

    position: relative;

    transition: var(--eg-transition);

}

.eg-process-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.eg-process-number {

    width: 70px;

    height: 70px;

    min-width: 70px;

    max-width: 70px;

    min-height: 70px;

    max-height: 70px;

    aspect-ratio: 1 / 1;

    flex-shrink: 0;

    border-radius: 50%;

    padding: 0;

    box-sizing: border-box;

    background: #000;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;

    line-height: 1;

    text-align: center;

    margin: 0 auto 30px;

    position: relative;

    z-index: 2;

    user-select: none;

}

/* Universal Circular Element Aspect Ratio Enforcement */
.eg-process-number,
.eg-step-number,
.eg-step-badge,
.eg-timeline-badge,
.eg-timeline-step,
.eg-work-process .eg-process-number,
.eg-scroll-top,
.eg-carousel-nav-btn {
    aspect-ratio: 1 / 1 !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
}

.eg-process-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

    font-weight: 700;

}

.eg-process-card p {

    color: #666;

    line-height: 1.8;

    margin: 0;

}

/*==================================================
    HOME - TESTIMONIALS
==================================================*/

.eg-testimonials {

    padding: 110px 0;

}

.eg-testimonials-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.eg-testimonial-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 24px;

    padding: 40px;

    transition: var(--eg-transition);

}

.eg-testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .08);

}

.eg-stars {

    color: #f5b301;

    font-size: 22px;

    margin-bottom: 25px;

}

.eg-testimonial-card p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;

}

.eg-client {

    display: flex;

    align-items: center;

    gap: 15px;

}

.eg-client img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

}

.eg-client h4 {

    margin: 0;

    font-size: 18px;

    font-weight: 700;

}

.eg-client span {

    color: #777;

    font-size: 14px;

}

/*==================================================
    HOME - FINAL CTA
==================================================*/

.eg-cta {

    padding: 110px 0;

    background: #ffffff;

}

.eg-cta-box {

    background: linear-gradient(135deg, #111111, #2a2a2a);

    color: #ffffff;

    border-radius: 32px;

    padding: 80px 60px;

    text-align: center;

    overflow: hidden;

    position: relative;

}

.eg-cta-box span {

    display: inline-block;

    padding: 10px 22px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

}

.eg-cta-box h2 {

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 25px;

}

.eg-cta-box p {

    max-width: 760px;

    margin: 0 auto 40px;

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255, 255, 255, .85);

}

.eg-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

}

.eg-cta-buttons .eg-btn-primary,
.eg-cta-buttons .eg-btn-outline {

    width: 240px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

}

.eg-cta .eg-btn-outline {

    background: transparent;

    color: #ffffff;

    border-color: #ffffff;

}

.eg-cta .eg-btn-outline:hover {

    background: #ffffff;

    color: #000000;

}

/*==================================================
    GLOBAL FOOTER
==================================================*/

.eg-footer {

    background: #111;

    color: #fff;

    padding: 90px 0 30px;

}

.eg-footer-logo img {

    height: 50px;

    margin-bottom: 25px;

}

.eg-footer-about {

    color: #bcbcbc;

    line-height: 1.9;

    margin-bottom: 30px;

}

.eg-social-links {

    display: flex;

    gap: 15px;

}

.eg-social-links a {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: #222;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: all .3s ease;

}

.eg-social-links a i {

    color: inherit;

    transition: all .3s ease;

    font-size: 18px;

}

.eg-social-links a:hover {

    background: #ffffff;

    color: #111111;

    transform: translateY(-3px);

}

.eg-social-links a:hover {

    background: #ffffff;

    transform: translateY(-3px);

}

.eg-social-links a:hover i {

    color: #111111;

}


.eg-footer h4 {

    margin-bottom: 25px;

    font-size: 20px;

    font-weight: 700;

}

.eg-footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.eg-footer ul li {

    margin-bottom: 14px;

}

.eg-footer a {

    color: #bcbcbc;

    text-decoration: none;

    transition: .3s;

}

.eg-footer a:hover {

    color: #fff;

}

.eg-contact-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #bcbcbc;

}

.eg-contact-list li a {

    color: #bcbcbc;

    text-decoration: none;

    transition: color 0.3s ease;

}

.eg-contact-list li a:hover {

    color: #ffffff;

    text-decoration: none;

}

.eg-footer-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.eg-footer-partner-badge:hover {
    border-color: #444444;
    background: #222222;
}

.eg-footer-partner-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.eg-footer-partner-text {
    display: flex;
    flex-direction: column;
}

.eg-partner-heading {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.eg-partner-sub {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    line-height: 1.2;
    margin-top: 2px;
}

.eg-footer hr {

    margin: 60px 0 30px;

    border-color: #2d2d2d;

}

.eg-footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}

.eg-footer-bottom p {

    margin: 0;

    color: #999;

}

.eg-footer-bottom div {

    display: flex;

    gap: 20px;

}

/*==================================================
    MOBILE MENU OVERLAY
==================================================*/

.eg-menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: all .35s ease;

    z-index: 9998;

    pointer-events: none;

}

.eg-menu-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}

/*==================================================
    ABOUT HERO
==================================================*/

.eg-about-hero {

    position: relative;

    padding: 180px 0 120px;

    overflow: hidden;

    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);

}

.eg-about-content {

    max-width: 620px;

}

.eg-section-tag {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 20px;

    border: 1px solid #e5e5e5;

    border-radius: 999px;

    background: #fff;

    color: #111;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.eg-about-content h1 {

    margin-bottom: 24px;

    font-size: 58px;

    line-height: 1.15;

    font-weight: 700;

    color: var(--eg-heading);

}

.eg-about-content p {

    margin-bottom: 40px;

    font-size: 18px;

    line-height: 1.9;

    color: var(--eg-text);

}

.eg-about-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.eg-about-image {

    text-align: right;

}

.eg-about-image img {

    width: 100%;

    max-width: 560px;

    height: auto;

    border-radius: 24px;

    box-shadow: none;

}

/*==================================================
    OUR STORY
==================================================*/

.eg-story {

    padding: 120px 0;

}

.eg-story-image img {

    width: 100%;

    border-radius: 24px;

    box-shadow: none;

}

.eg-story-content {

    padding-left: 40px;

}

.eg-story-content h2 {

    margin: 20px 0 30px;

    font-size: 46px;

    line-height: 1.2;

    color: var(--eg-heading);

}

.eg-story-content p {

    margin-bottom: 22px;

    font-size: 17px;

    line-height: 1.9;

    color: var(--eg-text);

}

/*==================================================
    MISSION & VISION
==================================================*/

.eg-mission {

    padding: 120px 0;

    background: #f8f9fb;

}

.eg-mission-card {

    height: 100%;

    padding: 50px;

    background: #fff;

    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    transition: var(--eg-transition);

}

.eg-mission-card:hover {

    transform: translateY(-8px);

}

.eg-mission-icon {

    width: 70px;

    height: 70px;

    margin-bottom: 30px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111111;

    color: #ffffff;

    font-size: 28px;

    transition: var(--eg-transition);

}

.eg-mission-icon i {

    color: #ffffff;

}

.eg-mission-card:hover .eg-mission-icon {

    background: #000000;

    transform: scale(1.05);

}

.eg-mission-card h3 {

    margin-bottom: 20px;

    font-size: 30px;

    color: var(--eg-heading);

}

.eg-mission-card p {

    margin: 0;

    font-size: 17px;

    line-height: 1.9;

}

/*==================================================
    CORE VALUES
==================================================*/

.eg-values {

    padding: 120px 0;

}

.eg-value-card {

    height: 100%;

    padding: 40px 35px;

    background: #fff;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    transition: var(--eg-transition);

}

.eg-value-card:hover {

    transform: translateY(-10px);

}

.eg-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: var(--eg-transition);
}

.eg-value-icon i {
    color: #ffffff;
}

.eg-value-card:hover .eg-value-icon {
    background: #111111;
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.eg-value-card h3 {

    margin-bottom: 18px;

    font-size: 24px;

    color: var(--eg-heading);

}

.eg-value-card p {

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--eg-text);

}

/*==================================================
    WHY CHOOSE ABOUT
==================================================*/

.eg-why-about {

    padding: 120px 0;

    background: #f8f9fb;

}

.eg-why-about-content {

    padding-right: 50px;

}

.eg-why-about-content h2 {

    margin: 20px 0 25px;

    font-size: 48px;

    line-height: 1.2;

}

.eg-why-about-content>p {

    margin-bottom: 40px;

    font-size: 17px;

    line-height: 1.9;

}

.eg-why-list {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.eg-why-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

}

.eg-why-item i {

    margin-top: 6px;

    font-size: 24px;

    color: var(--eg-primary);

}

.eg-why-item h4 {

    margin-bottom: 8px;

    font-size: 22px;

}

.eg-why-item p {

    margin: 0;

    line-height: 1.8;

}

.eg-why-about-image {

    text-align: right;

}

.eg-why-about-image img {

    width: 100%;

    max-width: 560px;

    border-radius: 24px;

    box-shadow: none;

}

/*==================================================
    OUR JOURNEY
==================================================*/

.eg-journey {

    padding: 120px 0;

}

.eg-timeline {

    position: relative;

    max-width: 900px;

    margin: 70px auto 0;

}

.eg-timeline::before {

    content: "";

    position: absolute;

    left: 22px;

    top: 0;

    width: 2px;

    height: 100%;

    background: #d9e7ef;

}

.eg-timeline-item {

    position: relative;

    display: flex;

    gap: 35px;

    margin-bottom: 50px;

}

.eg-timeline-dot {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    flex-shrink: 0;

    background: #000;

    border: 8px solid #fff;

    box-shadow: 0 0 0 2px rgba(0, 0, 0, .18);

}

.eg-timeline-content {

    flex: 1;

    padding: 30px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

}

.eg-timeline-content h4 {

    margin-bottom: 15px;

    font-size: 24px;

    color: var(--eg-heading);

}

.eg-timeline-content p {

    margin: 0;

    line-height: 1.8;

}

/*==================================================
    LEADERSHIP MESSAGE
==================================================*/

.eg-leadership {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background: #f8fbff;

}

.eg-leadership::before,
.eg-leadership::after {

    content: "";

    position: absolute;

    z-index: 0;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: #eaf2ff;

    opacity: .72;

}

.eg-leadership::before {

    top: -245px;

    left: -145px;

}

.eg-leadership::after {

    right: -190px;

    bottom: -260px;

}

.eg-leadership-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}

.eg-leadership-heading p {

    max-width: 560px;

    margin: 20px auto 0;

    color: var(--eg-text);

}

.eg-leadership-carousel {

    position: relative;

    z-index: 1;

    max-width: 1120px;

    margin: 0 auto;

}

.eg-leadership-viewport {

    overflow: hidden;

    width: 100%;

}

.eg-leadership-track {

    display: flex;

    transition: transform .65s cubic-bezier(.25, 1, .5, 1);

    will-change: transform;

}

.eg-leadership-slide {

    flex: 0 0 100%;

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

    display: grid;

    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);

    align-items: center;

    gap: clamp(45px, 7vw, 105px);

    padding: 10px 45px 25px;

}

.eg-leader-image {

    text-align: center;

}

.eg-leader-image img {

    width: clamp(230px, 25vw, 360px);

    height: clamp(230px, 25vw, 360px);

    object-fit: cover;

    border-radius: 50%;

    border: 8px solid #fff;

    box-shadow: none;

}

.eg-leader-sign {

    margin-top: 22px;

    padding: 0;

    border: 0;

    text-align: center;

}

.eg-leader-sign h4 {

    margin-bottom: 5px;

    font-size: 28px;

    color: var(--eg-heading);

}

.eg-leader-sign span {

    display: block;

    color: var(--eg-text-light);

    font-size: 16px;

    font-weight: 600;

}

.eg-leader-quote {

    max-width: 390px;

    margin: 18px auto 0;

    color: var(--eg-text);

    font-size: 15px;

    font-weight: 500;

    line-height: 1.75;

    text-align: center;

}

.eg-leader-content {

    max-width: 700px;

    padding: 10px 0 10px 10px;

}

.eg-leader-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

    color: var(--eg-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}

.eg-leader-eyebrow::after {

    content: "";

    width: 68px;

    height: 1px;

    background: #9bbbe3;

}

.eg-leader-content h2 {

    position: relative;

    margin: 0 0 28px;

    max-width: 680px;

    padding: 0 38px;

    font-size: clamp(34px, 3.5vw, 52px);

    line-height: 1.12;

    letter-spacing: 0;

    text-wrap: balance;

    color: #101f3d;

}

.eg-leader-content h2::before,
.eg-leader-content h2::after {

    position: absolute;

    color: #b9d0ec;

    font-size: 72px;

    font-weight: 800;

    line-height: .7;

}

.eg-leader-content h2::before {

    content: "\201C";

    top: 7px;

    left: -6px;

}

.eg-leader-content h2::after {

    content: "\201D";

    right: -4px;

    bottom: -4px;

}

.eg-leader-content h2 span {

    color: #3978c5;

}

.eg-leader-content p {

    margin-bottom: 22px;

    font-size: 17px;

    line-height: 1.9;

    color: #53647d;

}

.eg-leadership-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    margin-top: 25px;

}

.eg-leadership-control {

    width: 44px;

    height: 44px;

    border: 1px solid #111;

    border-radius: 50%;

    background: #fff;

    color: #111;

    cursor: pointer;

    transition: var(--eg-transition);

}

.eg-leadership-control:hover {

    background: #111;

    color: #fff;

    transform: translateY(-2px);

}

.eg-leadership-dots {

    display: flex;

    align-items: center;

    gap: 8px;

}

.eg-leadership-dot {

    width: 9px;

    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cfd5dc;

    cursor: pointer;

    transition: var(--eg-transition);

}

.eg-leadership-dot.is-active {

    width: 26px;

    border-radius: 999px;

    background: #111;

}

/*==================================================
    ABOUT CTA
==================================================*/

.eg-about-cta {

    padding: 110px 0;

    background: #ffffff;

}

.eg-about-cta-box {

    position: relative;

    max-width: 1050px;

    margin: auto;

    padding: 80px 60px;

    background: linear-gradient(135deg, #111111, #2a2a2a);

    color: #ffffff;

    border-radius: 32px;

    text-align: center;

    overflow: hidden;

    border: none;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .20);

}

.eg-about-cta-box::before,
.eg-about-cta-box::after {

    display: none;

}

.eg-about-cta-box>* {

    position: relative;

    z-index: 2;

}

.eg-about-cta-box .eg-section-tag {

    display: inline-block;

    padding: 10px 22px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

    color: #ffffff;

    background: transparent;

}

.eg-about-cta-box h2 {

    margin: 20px 0 25px;

    font-size: 52px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;

}

.eg-about-cta-box p {

    max-width: 760px;

    margin: 0 auto 45px;

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255, 255, 255, .85);

}

/*==================================================
    ABOUT CTA BUTTONS
==================================================*/

.eg-about-cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

.eg-about-btn-primary,
.eg-about-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 220px;

    height: 58px;

    padding: 0 34px;

    border-radius: 999px;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: all .35s ease;

}

/* Primary Button (Black) */

.eg-about-btn-primary {

    background: #000000;

    color: #ffffff;

    border: 2px solid #000000;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

}

.eg-about-btn-primary:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #000000;

    text-decoration: none;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

/* Secondary Button (White) */

.eg-about-btn-outline {

    background: #ffffff;

    color: #000000;

    border: 2px solid #ffffff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);

}

.eg-about-btn-outline:hover {

    background: transparent;

    color: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}


/*==================================================
    SERVICES HERO
==================================================*/

.eg-services-hero {

    padding: 180px 0 90px;

    background: #FFFFFF;

}

.eg-services-hero-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;

}

.eg-services-hero-content {

    max-width: 620px;

}

.eg-services-hero-content h1 {

    margin: 20px 0 30px;

    font-size: 58px;

    font-weight: 700;

    line-height: 1.15;

    color: #111111;

}

.eg-services-hero-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #555555;

}

.eg-services-breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 45px;

    font-size: 15px;

}

.eg-services-breadcrumb a {

    color: #111111;

    font-weight: 600;

    text-decoration: none;

}

.eg-services-breadcrumb span {

    color: #777777;

}

.eg-services-hero-image {

    position: relative;

}

.eg-services-hero-image img {

    width: 100%;

    display: block;

    border-radius: 14px;

    border: none;

    box-shadow: none !important;

    filter: none !important;

    transition: .35s;

}

.eg-services-hero-image:hover img {

    transform: translateY(-6px);

}

/*==================================================
    SERVICES OVERVIEW
==================================================*/

.eg-services-overview {

    padding: 100px 0;

    background: #F8F9FA;

}

.eg-services-overview-grid {

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 70px;

    align-items: center;

}

.eg-services-overview-image {

    position: relative;

}

.eg-services-overview-image img {

    width: 100%;

    display: block;

    border-radius: 14px;

    border: none;

    box-shadow: none !important;

    filter: none !important;

    transition: all .35s ease;

}

.eg-services-overview-image:hover img {

    transform: translateY(-6px);

}

.eg-services-overview-content {

    max-width: 620px;

}

.eg-services-overview-content p {

    margin: 25px 0 35px;

    color: #555555;

    font-size: 17px;

    line-height: 1.9;

}

.eg-services-overview-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.eg-services-overview-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    transition: all .30s ease;

}

.eg-services-overview-item:hover {

    background: #FFFFFF;

    border-color: #111111;

    box-shadow: 0 10px 30px rgba(17, 17, 17, .06);

    transform: translateY(-3px);

}

.eg-services-overview-item i {

    font-size: 18px;

    color: #111111;

    flex-shrink: 0;

}

.eg-services-overview-item span {

    font-size: 15px;

    font-weight: 600;

    color: #111111;

    line-height: 1.5;

}


/*==================================================
    CORE SERVICES
==================================================*/

.eg-core-services {

    padding: 100px 0;

    background: #FFFFFF;

}

.eg-core-services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.eg-core-service-card {

    position: relative;

    padding: 35px;

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    transition: all .35s ease;

    overflow: hidden;

}

.eg-core-service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(17, 17, 17, .08);

    border-color: #111111;

}

.eg-core-service-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    transition: all .35s ease;

}

.eg-core-service-card:hover .eg-core-service-icon {

    background: #111111;

    border-color: #111111;

}

.eg-core-service-icon i {

    font-size: 28px;

    color: #111111;

    transition: all .35s ease;

}

.eg-core-service-card:hover .eg-core-service-icon i {

    color: #FFFFFF;

}

.eg-core-service-card h3 {

    margin-bottom: 18px;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.35;

    color: #111111;

}

.eg-core-service-card p {

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #555555;

}

.eg-core-service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 0;

    background: #111111;

    transition: height .35s ease;

}

.eg-core-service-card:hover::before {

    height: 100%;

}

/*==================================================
    WHY CHOOSE US
==================================================*/

.eg-why-services {

    padding: 100px 0;

    background: #F8F9FA;

}

.eg-why-services-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 70px;

    align-items: center;

}

.eg-why-services-content {

    max-width: 620px;

}

.eg-why-services-content p {

    margin: 25px 0 40px;

    font-size: 17px;

    line-height: 1.9;

    color: #555555;

}

.eg-why-services-features {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.eg-why-service-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 24px;

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    transition: all .35s ease;

}

.eg-why-service-item:hover {

    transform: translateY(-5px);

    border-color: #111111;

    box-shadow: 0 15px 40px rgba(17, 17, 17, .08);

}

.eg-why-service-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    transition: all .35s ease;

}

.eg-why-service-item:hover .eg-why-service-icon {

    background: #111111;

    border-color: #111111;

}

.eg-why-service-icon i {

    font-size: 26px;

    color: #111111;

    transition: all .35s ease;

}

.eg-why-service-item:hover .eg-why-service-icon i {

    color: #FFFFFF;

}

.eg-why-service-item h4 {

    margin: 0 0 10px;

    font-size: 20px;

    font-weight: 700;

    color: #111111;

}

.eg-why-service-item p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: #666666;

}

.eg-why-services-image {

    position: relative;

}

.eg-why-services-image img {

    width: 100%;

    display: block;

    border-radius: 14px;

    border: none;

    box-shadow: none !important;

    filter: none !important;

    transition: all .35s ease;

}

.eg-why-services-image:hover img {

    transform: translateY(-6px);

}

/*==================================================
    WORK PROCESS
==================================================*/

.eg-work-process {

    padding: 100px 0;

    background: #FFFFFF;

}

.eg-work-process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 60px;

    position: relative;

}

.eg-work-process-grid::before {

    content: "";

    position: absolute;

    top: 58px;

    left: 12.5%;

    width: 75%;

    height: 1px;

    background: #E5E5E5;

    z-index: 0;

}

.eg-work-process .eg-process-card {

    position: relative;

    z-index: 1;

    padding: 38px 28px;

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: var(--eg-card-radius, 16px);

    text-align: center;

    transition: all .35s ease;

    overflow: visible;

}

.eg-work-process .eg-process-card:hover {

    transform: translateY(-8px);

    border-color: #111111;

    box-shadow: 0 18px 45px rgba(17, 17, 17, .08);

}

.eg-work-process .eg-process-number {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 36px;

    height: 36px;

    min-width: 36px;

    max-width: 36px;

    min-height: 36px;

    max-height: 36px;

    aspect-ratio: 1 / 1;

    flex-shrink: 0;

    border-radius: 50%;

    padding: 0;

    box-sizing: border-box;

    background: #000000;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13.5px;

    font-weight: 700;

    line-height: 1;

    text-align: center;

    margin: 0;

    z-index: 2;

    user-select: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);

}

.eg-process-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    border-radius: 50%;

    transition: all .35s ease;

}

.eg-process-card:hover .eg-process-icon {

    background: #111111;

    border-color: #111111;

}

.eg-process-icon i {

    font-size: 30px;

    color: #111111;

    transition: all .35s ease;

}

.eg-process-card:hover .eg-process-icon i {

    color: #FFFFFF;

}

.eg-process-card h3 {

    margin-bottom: 16px;

    font-size: 22px;

    font-weight: 700;

    color: #111111;

}

.eg-process-card p {

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #555555;

}

/*==================================================
    TECHNOLOGIES & PLATFORMS
==================================================*/

.eg-technology {

    padding: 100px 0;

    background: #F8F9FA;

}

.eg-technology-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.eg-technology-card {

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    padding: 35px;

    transition: all .35s ease;

    position: relative;

    overflow: hidden;

}

.eg-technology-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: #111111;

    transform: scaleY(0);

    transform-origin: top;

    transition: transform .35s ease;

}

.eg-technology-card:hover {

    transform: translateY(-8px);

    border-color: #111111;

    box-shadow: 0 18px 45px rgba(17, 17, 17, .08);

}

.eg-technology-card:hover::before {

    transform: scaleY(1);

}

.eg-technology-card h3 {

    margin-bottom: 25px;

    font-size: 24px;

    font-weight: 700;

    color: #111111;

    line-height: 1.3;

}

.eg-technology-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.eg-technology-card ul li {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    font-size: 16px;

    color: #555555;

    border-bottom: 1px solid #F1F1F1;

    transition: all .30s ease;

}

.eg-technology-card ul li:last-child {

    border-bottom: none;

}

.eg-technology-card ul li::before {

    content: "✓";

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    border-radius: 50%;

    color: #111111;

    font-size: 12px;

    font-weight: 700;

    flex-shrink: 0;

    transition: all .30s ease;

}

.eg-technology-card:hover ul li::before {

    background: #111111;

    border-color: #111111;

    color: #FFFFFF;

}

.eg-technology-card ul li:hover {

    color: #111111;

    padding-left: 6px;

}

/*==================================================
    INDUSTRIES & BUSINESS FUNCTIONS
==================================================*/

.eg-industries {

    padding: 100px 0;

    background: #FFFFFF;

}

.eg-industries-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.eg-industry-card {

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    padding: 35px 25px;

    text-align: center;

    transition: all .35s ease;

}

.eg-industry-card:hover {

    transform: translateY(-8px);

    border-color: #111111;

    box-shadow: 0 18px 45px rgba(17, 17, 17, .08);

}

.eg-industry-card i {

    width: 75px;

    height: 75px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    color: #111111;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    border-radius: 50%;

    transition: all .35s ease;

}

.eg-industry-card:hover i {

    background: #111111;

    color: #FFFFFF;

    border-color: #111111;

}

.eg-industry-card h3 {

    margin: 0;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.5;

    color: #111111;

}

.eg-functions {

    margin-top: 90px;

    padding: 50px;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

}

.eg-functions-header {

    text-align: center;

    max-width: 720px;

    margin: 0 auto 40px;

}

.eg-functions-header h3 {

    margin-bottom: 15px;

    font-size: 32px;

    font-weight: 700;

    color: #111111;

}

.eg-functions-header p {

    margin: 0;

    font-size: 17px;

    line-height: 1.8;

    color: #555555;

}

.eg-functions-grid {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 18px;

}

.eg-functions-grid span {

    padding: 14px 24px;

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    color: #111111;

    transition: all .30s ease;

    cursor: default;

}

.eg-functions-grid span:hover {

    background: #111111;

    color: #FFFFFF;

    border-color: #111111;

    transform: translateY(-3px);

}

/*==================================================
    SERVICES FAQ (2-Column Grid Layout)
==================================================*/

.eg-services-faq {
    padding: 100px 0;
    background: #f8f9fb;
}

.eg-services-faq .eg-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 60px;
    align-items: flex-start;
}

.eg-services-faq .eg-faq-content {
    position: sticky;
    top: 110px;
}

.eg-services-faq .eg-section-tag {
    display: inline-block;
    padding: 8px 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.eg-services-faq .eg-section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.eg-services-faq .eg-faq-content>p {
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.eg-services-faq .eg-faq-contact {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 34px 34px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.eg-services-faq .eg-faq-contact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.eg-services-faq .eg-faq-contact p {
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.eg-services-faq .eg-faq-contact .eg-btn-primary {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.eg-services-faq .eg-faq-contact .eg-btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Right Side Accordion */
.eg-services-faq .eg-faq-accordion {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eg-services-faq .eg-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.eg-services-faq .eg-faq-item:hover {
    border-color: #cbd5e1;
}

.eg-services-faq .eg-faq-item.active {
    border: 1.5px solid #0f172a;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.eg-services-faq .eg-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 22px 26px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.eg-services-faq .eg-faq-question:hover {
    background: #f8fafc;
}

.eg-services-faq .eg-faq-item.active .eg-faq-question {
    background: #f8fafc;
}

.eg-services-faq .eg-faq-question span {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    flex: 1;
}

.eg-services-faq .eg-faq-item.active .eg-faq-question span {
    color: #0f172a;
}

.eg-services-faq .eg-faq-question i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #475569;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.eg-services-faq .eg-faq-item.active .eg-faq-question i {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(45deg);
}

.eg-services-faq .eg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 26px;
}

.eg-services-faq .eg-faq-item.active .eg-faq-answer {
    max-height: 500px;
    padding: 0 26px 24px;
}

.eg-services-faq .eg-faq-answer p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .eg-services-faq .eg-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eg-services-faq .eg-faq-content {
        position: static;
    }
}

@media (max-width: 576px) {
    .eg-services-faq {
        padding: 60px 0;
    }

    .eg-services-faq .eg-section-title {
        font-size: 1.85rem;
    }

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

    .eg-services-faq .eg-faq-item.active .eg-faq-answer {
        padding: 0 18px 16px;
    }
}

/*==================================================
    SERVICES CTA
==================================================*/

.eg-services-cta {

    padding: 100px 0;

    background: #FFFFFF;

}

.eg-services-cta-box {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 60px;

    align-items: center;

    padding: 70px;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(17, 17, 17, .06);

}

.eg-services-cta-content h2 {

    margin: 20px 0 25px;

    font-size: 48px;

    font-weight: 700;

    line-height: 1.2;

    color: #111111;

}

.eg-services-cta-content p {

    margin-bottom: 35px;

    font-size: 17px;

    line-height: 1.9;

    color: #555555;

}

.eg-services-cta-benefits {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.eg-services-cta-benefit {

    display: flex;

    align-items: center;

    gap: 14px;

    font-size: 16px;

    font-weight: 600;

    color: #111111;

}

.eg-services-cta-benefit i {

    color: #16A34A;

    font-size: 18px;

}

.eg-services-cta-action {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.eg-services-cta-action .eg-btn-primary,
.eg-services-cta-action .eg-btn-secondary {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
}

/*==================================================
    SECONDARY BUTTON (Opposite theme to primary)
==================================================*/

.eg-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    min-height: 52px;
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .35s ease;
}

.eg-btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.eg-services-cta-info {

    margin-top: 20px;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.eg-services-cta-info-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    background: #FFFFFF;

    border: 1px solid #E5E5E5;

    border-radius: 14px;

    transition: all .35s ease;

    text-decoration: none !important;

    color: inherit !important;

    cursor: pointer;

}

.eg-services-cta-info-item:hover {

    transform: translateY(-4px);

    border-color: #111111;

    box-shadow: 0 12px 30px rgba(17, 17, 17, .08);

    text-decoration: none !important;

    color: inherit !important;

}

.eg-services-cta-info-item i {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111111;

    color: #FFFFFF;

    border-radius: 50%;

    font-size: 20px;

    flex-shrink: 0;

}

.eg-services-cta-info-item small {

    display: block;

    margin-bottom: 4px;

    font-size: 13px;

    color: #777777;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.eg-services-cta-info-item strong {

    font-size: 17px;

    font-weight: 700;

    color: #111111;

}

/*==================================================
    SERVICES CTA
==================================================*/

@media (max-width:1199px) {

    .eg-services-cta-box {

        gap: 50px;

        padding: 60px 50px;

    }

    .eg-services-cta-content h2 {

        font-size: 42px;

    }

}

@media (max-width:991px) {

    .eg-services-cta {

        padding: 80px 0;

    }

    .eg-services-cta-box {

        grid-template-columns: 1fr;

        gap: 50px;

        padding: 50px 40px;

    }

    .eg-services-cta-action {

        max-width: 500px;

    }

}

@media (max-width:767px) {

    .eg-services-cta {

        padding: 70px 0;

    }

    .eg-services-cta-box {

        padding: 40px 30px;

        gap: 40px;

    }

    .eg-services-cta-content h2 {

        font-size: 34px;

    }

    .eg-services-cta-content p {

        font-size: 16px;

        margin-bottom: 30px;

    }

    .eg-services-cta-benefits {

        gap: 15px;

    }

    .eg-services-cta-benefit {

        font-size: 15px;

    }

    .eg-services-cta-info {

        margin-top: 15px;

        gap: 15px;

    }

    .eg-services-cta-info-item {

        padding: 16px 18px;

        gap: 15px;

    }

    .eg-services-cta-info-item i {

        width: 48px;

        height: 48px;

        font-size: 18px;

    }

    .eg-services-cta-info-item strong {

        font-size: 16px;

    }

}

@media (max-width:575px) {

    .eg-services-cta {

        padding: 60px 0;

    }

    .eg-services-cta-box {

        padding: 30px 20px;

        border-radius: 16px;

    }

    .eg-services-cta-content h2 {

        font-size: 28px;

        line-height: 1.3;

    }

    .eg-services-cta-content p {

        font-size: 15px;

    }

    .eg-services-cta-benefit {

        align-items: flex-start;

        font-size: 14px;

    }

    .eg-services-cta-benefit i {

        margin-top: 2px;

    }

    .eg-services-cta-info-item {

        padding: 15px;

    }

    .eg-services-cta-info-item i {

        width: 44px;

        height: 44px;

        font-size: 16px;

    }

    .eg-services-cta-info-item small {

        font-size: 12px;

    }

    .eg-services-cta-info-item strong {

        font-size: 15px;

        word-break: break-word;

    }

}

/*==================================================
Industries Hero
==================================================*/

.eg-industries-hero {
    background: #FFFFFF;
    padding: 180px 0 80px;
}

.eg-section-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: fit-content;
    align-self: flex-start;
    padding: 8px 18px;
    margin-bottom: 20px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111111;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 999px;
    white-space: nowrap;
}

.eg-industries-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 25px;
}

.eg-industries-title span {
    display: block;
}

.eg-industries-description {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.eg-industries-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.eg-industries-stats {
    display: flex;
    gap: 20px;
}

.eg-stat {
    flex: 1;
    padding: 22px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
}

.eg-stat h3 {
    font-size: 30px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.eg-stat span {
    font-size: 14px;
    color: #666;
}

.eg-industries-image {
    text-align: center;
}

.eg-industries-image img {
    width: 100%;
    max-width: 620px;
}


/*==================================================
Industries Transform
==================================================*/

.eg-industries-transform {
    padding: 120px 0 80px;
    background: #F8F9FA;
}

.eg-industry-card-lg {
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
}

.eg-industry-card-lg:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, .10);
}

.eg-industry-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.eg-industry-card-lg:hover .eg-industry-card-icon {
    background: #000000;
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.eg-industry-img {
    width: 100%;
    max-width: 260px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
}

.eg-industry-card-lg h3 {
    font-size: 30px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
}

.eg-industry-card-lg p {
    font-size: 16px;
    line-height: 1.9;
    color: #666666;
    margin-bottom: 30px;
}

.eg-industry-card-lg ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.eg-industry-card-lg ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #444444;
    font-size: 15px;
}

.eg-industry-card-lg ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    font-weight: 700;
}

.eg-industry-card-lg .eg-btn-outline {
    margin-top: auto;
    align-self: flex-start;
}

/*==================================================
Business Challenges
==================================================*/

.eg-business-challenges {
    padding: 120px 0 80px;
    background: #FFFFFF;
}

.eg-challenge-card {
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.eg-challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, .10);
    border-color: #111111;
}

.eg-challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #111111;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}

.eg-challenge-card:hover::before {
    transform: scaleY(1);
}

.eg-challenge-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
}

.eg-challenge-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
}

.eg-challenge-card p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.9;
}

/*==================================================
Industry Solutions
==================================================*/

.eg-industry-solutions {
    padding: 120px 0 80px;
    background: #F8F9FA;
}

.eg-solution-card {
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.eg-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, .10);
    border-color: #111111;
}

.eg-solution-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #111111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.eg-solution-card:hover::after {
    transform: scaleX(1);
}

.eg-solution-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
    line-height: 1.3;
}

.eg-solution-card p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.9;
}

.eg-solution-card:hover h4 {
    color: #111111;
}


/*==================================================
Why Expolio
==================================================*/

.eg-why-expolio {
    padding: 120px 0 80px;
    background: #FFFFFF;
}

.eg-value-card {
    height: 100%;
    padding: 35px;
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    transition: all .35s ease;
}

.eg-value-card:hover {
    background: #FFFFFF;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(17, 17, 17, .08);
}

.eg-value-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.eg-value-card p {
    margin: 0;
    color: #666666;
    line-height: 1.9;
}

/*==================================================
Delivery Process
==================================================*/

.eg-delivery-process {
    padding: 120px 0 80px;
    background: #F8F9FA;
}

.eg-process-card {
    position: relative;
    height: 100%;
    padding: 40px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
    transition: all .35s ease;
}

.eg-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, .10);
}

.eg-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #111111;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
}

.eg-process-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 18px;
}

.eg-process-card p {
    margin: 0;
    color: #666666;
    line-height: 1.9;
}

/*==================================================
Business Impact
==================================================*/

.eg-business-impact {
    padding: 120px 0 80px;
    background: #FFFFFF;
}

.eg-impact-card {
    height: 100%;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);
    transition: all .35s ease;
}

.eg-impact-card:hover {
    transform: translateY(-8px);
    border-color: #111111;
    box-shadow: 0 20px 50px rgba(17, 17, 17, .10);
}

.eg-impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.eg-impact-card:hover .eg-impact-icon {
    background: #111111;
    border-color: #111111;
}

.eg-impact-icon i {
    font-size: 30px;
    color: #111111;
    transition: all .35s ease;
}

.eg-impact-card:hover .eg-impact-icon i {
    color: #FFFFFF;
}

.eg-impact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.eg-impact-card p {
    margin: 0;
    color: #666666;
    line-height: 1.9;
}

/*==================================================
Industries CTA
==================================================*/

.eg-industries-cta {
    padding: 120px 0;
    background: #FFFFFF;
}

.eg-industries-cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 70px 60px;

    background: #F8F9FA;

    border: 1px solid #E5E5E5;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(17, 17, 17, .06);

    transition: .35s ease;
}

.eg-industries-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(17, 17, 17, .08);
}

.eg-industries-cta-box::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 179, 179, .08);
    ;
}

.eg-industries-cta-box::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 51, 102, .05);
}

.eg-industries-cta-box .eg-section-badge {

    background: #fff;

    color: #111;

    border: 1px solid #E5E5E5;
}

.eg-industries-cta-box h2 {
    color: #111111;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    margin: 25px 0;
}

.eg-industries-cta-box p {
    max-width: 760px;
    margin: 0 auto;
    color: #666666;
    font-size: 18px;
    line-height: 1.9;
}

.eg-industries-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.eg-industries-cta-buttons .eg-btn {
    background: #111111;
    color: #FFFFFF;
    border-color: #111111;
}

.eg-industries-cta-buttons .eg-btn:hover {
    background: #333333;
    border-color: #333333;
    color: #FFFFFF;
}

.eg-industries-cta-buttons .eg-btn-outline {
    background: #FFFFFF;
    color: #111111;
    border: 2px solid #111111;
}

.eg-industries-cta-buttons .eg-btn-outline:hover {
    background: #111111;
    color: #FFFFFF;
    border-color: #111111;
}

/*==================================================
PORTFOLIO PAGE HERO
==================================================*/

.eg-portfolio-page-hero {

    padding: 170px 0 120px;

    background: var(--eg-bg);

}

.eg-portfolio-page-content {

    max-width: 620px;

}

.eg-portfolio-page-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 22px;

    margin-bottom: 30px;

    border: 1px solid var(--eg-border);

    border-radius: 999px;

    background: #fff;

    color: var(--eg-text);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.eg-portfolio-page-title {

    margin-bottom: 30px;

    color: var(--eg-text);

    font-size: 64px;

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -2px;

}

.eg-portfolio-page-title span {

    display: block;

}

.eg-portfolio-page-description {

    max-width: 600px;

    margin-bottom: 45px;

    color: var(--eg-text-light);

    font-size: 20px;

    line-height: 1.8;

}

.eg-portfolio-page-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

}

.eg-portfolio-page-image {

    height: 100%;

}

.eg-portfolio-page-image img {

    width: 100%;

    height: 100%;

    min-height: 520px;

    object-fit: cover;

    display: block;

    border-radius: var(--eg-card-radius);

    box-shadow: var(--eg-shadow);

}


/*==================================================
FEATURED PROJECTS
==================================================*/

.eg-portfolio-featured {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-portfolio-featured-card {

    height: 100%;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    overflow: hidden;

    box-shadow: var(--eg-shadow);

    transition: var(--eg-transition);

}

.eg-portfolio-featured-card:hover {

    transform: translateY(-8px);

}

.eg-portfolio-featured-image {

    overflow: hidden;

}

.eg-portfolio-featured-image img {

    width: 100%;

    display: block;

    transition: .5s;

}

.eg-portfolio-featured-card:hover img {

    transform: scale(1.05);

}

.eg-portfolio-featured-content {

    padding: 30px;

}

.eg-portfolio-featured-content>span:first-child,
.eg-portfolio-featured-content .eg-proj-cat-badge {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--eg-text-light);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.eg-portfolio-featured-content h3 {

    margin-bottom: 18px;

    font-size: 28px;

    line-height: 1.3;

    color: var(--eg-text);

}

.eg-portfolio-featured-content p {

    margin-bottom: 25px;

    color: var(--eg-text-light);

    line-height: 1.8;

}

.eg-portfolio-featured-content a {

    font-weight: 600;

    color: var(--eg-text);

    text-decoration: none;

}

/*==================================================
PORTFOLIO CATEGORIES
==================================================*/

.eg-portfolio-categories {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-portfolio-categories .eg-section-heading {

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;

}

.eg-portfolio-category-card {

    height: 100%;

    padding: 45px 35px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    text-align: center;

    transition: var(--eg-transition);

    position: relative;

    overflow: hidden;

}

.eg-portfolio-category-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.eg-portfolio-category-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #000;

    color: #fff;

    border-radius: 50%;

    font-size: 30px;

    transition: var(--eg-transition);

}

.eg-portfolio-category-icon i {

    color: #fff;

    font-size: 30px;

    line-height: 1;

}

.eg-portfolio-category-card:hover .eg-portfolio-category-icon {

    transform: scale(1.08);

}

.eg-portfolio-category-card h4 {

    margin-bottom: 18px;

    color: var(--eg-text);

    font-size: 26px;

    font-weight: 700;

    line-height: 1.3;

}

.eg-portfolio-category-card p {

    margin: 0;

    color: var(--eg-text-light);

    font-size: 16px;

    line-height: 1.8;

}

/*==================================================
CASE STUDIES
==================================================*/

.eg-portfolio-case-studies {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-case-study {

    margin-top: 80px;

}

.eg-case-study-image {

    overflow: hidden;

    border-radius: var(--eg-card-radius);

    box-shadow: var(--eg-shadow);

}

.eg-case-study-image img {

    width: 100%;

    display: block;

    border-radius: inherit;

}

.eg-case-study-content {

    padding: 20px;

}

.eg-case-study-category {

    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 18px;

    border: 1px solid var(--eg-border);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.eg-case-study-content h3 {

    margin-bottom: 25px;

    font-size: 42px;

    font-weight: 700;

    line-height: 1.2;

    color: var(--eg-text);

}

.eg-case-study-content p {

    margin-bottom: 30px;

    color: var(--eg-text-light);

    line-height: 1.9;

}

.eg-case-study-list {

    padding: 0;

    margin: 0;

    list-style: none;

}

.eg-case-study-list li {

    position: relative;

    padding-left: 28px;

    margin-bottom: 15px;

    color: var(--eg-text);

}

.eg-case-study-list li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 10px;

    width: 10px;

    height: 10px;

    background: #000;

    border-radius: 50%;

}

/*==================================================
BUSINESS RESULTS
==================================================*/

.eg-portfolio-results {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-portfolio-result-card {

    height: 100%;

    padding: 50px 35px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-portfolio-result-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.eg-portfolio-result-card h3 {

    margin-bottom: 15px;

    color: var(--eg-primary);

    font-size: 60px;

    font-weight: 700;

    line-height: 1;

}

.eg-portfolio-result-card h5 {

    margin-bottom: 18px;

    color: var(--eg-text);

    font-size: 24px;

    font-weight: 600;

}

.eg-portfolio-result-card p {

    margin: 0;

    color: var(--eg-text-light);

    line-height: 1.8;

}

/*==================================================
DELIVERY PROCESS
==================================================*/

.eg-portfolio-process {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-process-timeline {

    position: relative;

    max-width: 900px;

    margin: 80px auto 0;

}

.eg-process-timeline::before {

    content: "";

    position: absolute;

    left: 35px;

    top: 0;

    bottom: 0;

    width: 2px;

    background: #cbd5e1;

}

.eg-process-item {

    position: relative;

    display: flex;

    gap: 35px;

    margin-bottom: 45px;

}

.eg-process-item:last-child {

    margin-bottom: 0;

}

.eg-process-number {

    width: 70px;

    height: 70px;

    min-width: 70px;

    max-width: 70px;

    min-height: 70px;

    max-height: 70px;

    aspect-ratio: 1 / 1;

    flex-shrink: 0;

    border-radius: 50%;

    padding: 0;

    box-sizing: border-box;

    background: #000;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;

    line-height: 1;

    text-align: center;

    margin: 0;

    position: relative;

    z-index: 2;

    user-select: none;

}

.eg-process-card {

    flex: 1;

    padding: 35px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-process-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.eg-process-card h4 {

    margin-bottom: 18px;

    font-size: 28px;

    font-weight: 700;

    color: var(--eg-text);

}

.eg-process-card p {

    margin: 0;

    color: var(--eg-text-light);

    line-height: 1.8;

}

/*==================================================
INDUSTRIES
==================================================*/

.eg-portfolio-industries {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-industry-card {

    height: 100%;

    padding: 40px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-industry-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.eg-industry-number {

    display: inline-block;

    margin-bottom: 25px;

    font-size: 48px;

    font-weight: 700;

    color: #c8c8c8;

    line-height: 1;

}

.eg-industry-card h4 {

    margin-bottom: 18px;

    font-size: 28px;

    font-weight: 700;

    color: var(--eg-text);

}

.eg-industry-card p {

    margin: 0;

    color: var(--eg-text-light);

    line-height: 1.8;

}

/*==================================================
CLIENT TESTIMONIALS
==================================================*/

.eg-portfolio-testimonials {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-testimonial-card {

    height: 100%;

    padding: 40px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.eg-testimonial-quote {

    margin-bottom: 25px;

    color: var(--eg-primary);

    font-size: 64px;

    font-weight: 700;

    line-height: 1;

}

.eg-testimonial-card p {

    margin-bottom: 35px;

    color: var(--eg-text-light);

    line-height: 1.9;

    font-size: 16px;

}

.eg-testimonial-client {

    border-top: 1px solid var(--eg-border);

    padding-top: 20px;

}

.eg-testimonial-client h5 {

    margin-bottom: 6px;

    font-size: 20px;

    font-weight: 700;

    color: var(--eg-text);

}

.eg-testimonial-client span {

    color: var(--eg-text-light);

    font-size: 15px;

}

/*==================================================
PORTFOLIO FAQ
==================================================*/

.eg-portfolio-faq {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-faq-accordion {

    max-width: 900px;

    margin: 70px auto 0;

}

.eg-faq-accordion .accordion-item {

    margin-bottom: 20px;

    border: 1px solid var(--eg-border);

    border-radius: 20px;

    overflow: hidden;

    background: #fff;

}

.eg-faq-accordion .accordion-button {

    padding: 24px 30px;

    background: #fff;

    color: var(--eg-text);

    font-size: 20px;

    font-weight: 600;

    box-shadow: none;

}

.eg-faq-accordion .accordion-button:not(.collapsed) {

    background: #fff;

    color: var(--eg-primary);

}

.eg-faq-accordion .accordion-button:focus {

    box-shadow: none;

    border-color: transparent;

}

.eg-faq-accordion .accordion-body {

    padding: 0 30px 30px;

    color: var(--eg-text-light);

    line-height: 1.9;

}


/*==================================================
PORTFOLIO CTA
==================================================*/

.eg-portfolio-cta {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-portfolio-cta-box {

    max-width: 1050px;

    margin: 0 auto;

    padding: 80px 60px;

    background: linear-gradient(135deg, #111111, #2a2a2a);

    border-radius: 32px;

    text-align: center;

    color: #ffffff;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .20);

    position: relative;

    overflow: hidden;

}

.eg-portfolio-cta-box .eg-section-badge {

    display: inline-block;

    padding: 10px 22px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

    color: #ffffff;

    background: transparent;

}

.eg-portfolio-cta-box h2 {

    margin: 20px 0 25px;

    color: #ffffff;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;

}

.eg-portfolio-cta-box p {

    max-width: 760px;

    margin: 0 auto 45px;

    color: rgba(255, 255, 255, .85);

    font-size: 18px;

    line-height: 1.9;

}

.eg-portfolio-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-bottom: 60px;

    flex-wrap: wrap;

}

.eg-portfolio-cta-buttons .eg-btn,
.eg-portfolio-cta-buttons .eg-btn-primary {

    min-width: 220px;

    height: 58px;

    padding: 0 34px;

    background: #000000 !important;

    color: #ffffff !important;

    border: 2px solid #000000 !important;

    font-size: 16px;

    font-weight: 600;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-decoration: none;

    line-height: 1;

    box-sizing: border-box;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

    transition: all .35s ease;

}

.eg-portfolio-cta-buttons .eg-btn:hover,
.eg-portfolio-cta-buttons .eg-btn-primary:hover {

    background: #ffffff !important;

    border-color: #ffffff !important;

    color: #000000 !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

.eg-portfolio-cta-buttons .eg-btn-outline {

    min-width: 220px;

    height: 58px;

    padding: 0 34px;

    border: 2px solid #ffffff !important;

    border-radius: 999px;

    color: #000000 !important;

    background: #ffffff !important;

    font-size: 16px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-decoration: none;

    line-height: 1;

    box-sizing: border-box;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);

    transition: all .35s ease;

}

.eg-portfolio-cta-buttons .eg-btn-outline:hover {

    background: transparent !important;

    border-color: #ffffff !important;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

.eg-portfolio-cta-buttons .eg-btn-whatsapp {

    height: 52px;

    padding: 0 32px;

    background: #25D366;

    color: #fff;

    border: none;

    outline: none;

    border-radius: 999px;

    font-size: 16px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-decoration: none;

    line-height: 1;

    box-sizing: border-box;

    transition: var(--eg-transition);

}

.eg-portfolio-cta-buttons .eg-btn-whatsapp i {

    font-size: 18px;

    line-height: 1;

}

.eg-portfolio-cta-buttons .eg-btn-whatsapp:hover {

    background: #128C7E;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(37, 211, 102, .25);

}

.eg-portfolio-cta-features {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    padding-top: 40px;

    border-top: 1px solid rgba(255, 255, 255, .15);

}

.eg-portfolio-cta-feature strong {

    display: block;

    margin-bottom: 10px;

    color: #fff;

    font-size: 20px;

}

.eg-portfolio-cta-feature span {

    color: rgba(255, 255, 255, .75);

    line-height: 1.7;

}

/*==================================================
BLOG HERO
==================================================*/

.eg-blog-hero {

    padding: 170px 0 120px;

    background: var(--eg-bg);

}

.eg-blog-hero-content {

    max-width: 620px;

}

.eg-blog-hero-title {

    margin: 25px 0;

    font-size: 64px;

    font-weight: 700;

    line-height: 1.15;

    color: var(--eg-text);

}

.eg-blog-hero-description {

    margin-bottom: 40px;

    font-size: 18px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

.eg-blog-hero-buttons {

    margin-bottom: 60px;

}

.eg-blog-hero-image {

    text-align: center;

}

.eg-blog-hero-image img {

    max-width: 100%;

    height: auto;

}

.eg-blog-hero-stats {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

}

.eg-blog-stat-card {

    flex: 1;

    min-width: 160px;

    padding: 25px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: 20px;

    text-align: center;

    transition: var(--eg-transition);

}

.eg-blog-stat-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.eg-blog-stat-card h3 {

    margin-bottom: 8px;

    font-size: 34px;

    font-weight: 700;

    color: var(--eg-primary);

}

.eg-blog-stat-card span {

    display: block;

    font-size: 15px;

    color: var(--eg-text-light);

}

/*==================================================
KNOWLEDGE HUB
==================================================*/

.eg-blog-knowledge {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-knowledge-card {

    height: 100%;

    padding: 45px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-knowledge-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.eg-knowledge-icon {

    width: 90px;

    height: 90px;

    margin-bottom: 30px;

}

.eg-knowledge-icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}

.eg-knowledge-card h3 {

    margin-bottom: 20px;

    font-size: 30px;

    line-height: 1.3;

}

.eg-knowledge-card p {

    margin-bottom: 25px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

.eg-knowledge-card ul {

    margin: 0 0 30px;

    padding-left: 20px;

}

.eg-knowledge-card ul li {

    margin-bottom: 12px;

    color: var(--eg-text-light);

}

.eg-text-link {

    display: inline-block;

    font-weight: 600;

    color: var(--eg-primary);

    transition: var(--eg-transition);

}

.eg-text-link:hover {

    padding-left: 6px;

}

/*==================================================
FEATURED INSIGHT
==================================================*/

.eg-blog-featured {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-featured-card {

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    box-shadow: var(--eg-shadow);

}

.eg-featured-image {

    height: 100%;

    padding: 32px 8px 32px 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

}

.eg-featured-image img {

    width: 100%;

    height: 100%;

    max-height: 420px;

    object-fit: cover;

    border-radius: 18px;

    transition: var(--eg-transition);

}

.eg-featured-card:hover img {

    transform: scale(1.03);

}

.eg-featured-content {

    padding: 48px 44px 48px 32px;

}

.eg-featured-category {

    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 18px;

    border-radius: 50px;

    background: #000;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

}

.eg-featured-content h3 {

    margin-bottom: 25px;

    font-size: 40px;

    line-height: 1.3;

}

.eg-featured-content p {

    margin-bottom: 30px;

    color: var(--eg-text-light);

    line-height: 1.9;

}

.eg-featured-meta {

    display: flex;

    gap: 25px;

    margin-bottom: 35px;

    color: var(--eg-text-light);

    font-size: 15px;

}

.eg-featured-meta span {

    display: flex;

    align-items: center;

    gap: 8px;

}

/*==================================================
BLOG CATEGORIES
==================================================*/

.eg-blog-categories {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-category-card {

    display: block;

    height: 100%;

    padding: 40px 30px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    text-align: center;

    text-decoration: none;

    transition: var(--eg-transition);

}

.eg-category-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.eg-category-card img {

    width: 70px;

    height: 70px;

    object-fit: contain;

    margin-bottom: 25px;

}

.eg-category-card h4 {

    margin-bottom: 12px;

    font-size: 24px;

    color: var(--eg-text);

}

.eg-category-card span {

    display: block;

    color: var(--eg-text-light);

    font-size: 15px;

}

/*==================================================
LATEST INSIGHTS
==================================================*/

.eg-blog-latest {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-insight-card {

    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-insight-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.eg-insight-image {

    overflow: hidden;

}

.eg-insight-image img {

    width: 100%;

    aspect-ratio: 16/9;

    object-fit: cover;

    transition: var(--eg-transition);

}

.eg-insight-card:hover img {

    transform: scale(1.05);

}

.eg-insight-content {

    padding: 30px;

}

.eg-insight-category {

    display: inline-block;

    margin-bottom: 15px;

    padding: 6px 14px;

    border-radius: 50px;

    background: #f5f5f5;

    font-size: 13px;

    font-weight: 600;

}

.eg-insight-content h3 {

    margin-bottom: 18px;

    font-size: 26px;

    line-height: 1.35;

}

.eg-insight-content p {

    margin-bottom: 22px;

    color: var(--eg-text-light);

    line-height: 1.8;

}

.eg-insight-meta {

    display: flex;

    justify-content: space-between;

    margin-bottom: 25px;

    font-size: 14px;

    color: var(--eg-text-light);

}

.eg-insight-link {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: #000;

    font-weight: 600;

    text-decoration: none;

}

.eg-insight-link:hover {

    color: #000;

    text-decoration: underline;

}

/*==================================================
POPULAR TOPICS
==================================================*/

.eg-blog-topics {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-topics-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    max-width: 1100px;

    margin: 0 auto;

}

.eg-topic-pill {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 26px;

    border: 1px solid var(--eg-border);

    border-radius: 999px;

    background: #fff;

    color: var(--eg-text);

    font-weight: 600;

    text-decoration: none;

    transition: var(--eg-transition);

}

.eg-topic-pill:hover {

    background: var(--eg-primary);

    color: #fff;

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

}

/*==================================================
NEWSLETTER
==================================================*/

.eg-blog-newsletter {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-blog-newsletter-box {

    padding: 70px;

    background: var(--eg-section);

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

}

.eg-blog-newsletter h2 {

    margin: 25px 0;

    font-size: 48px;

    line-height: 1.25;

}

.eg-blog-newsletter p {

    color: var(--eg-text-light);

    line-height: 1.9;

}

.eg-newsletter-benefits {

    margin: 35px 0 0;

    padding-left: 20px;

}

.eg-newsletter-benefits li {

    margin-bottom: 15px;

    color: var(--eg-text);

}

.eg-newsletter-card {

    padding: 40px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: 20px;

    box-shadow: var(--eg-shadow);

}

.eg-newsletter-card h3 {

    margin-bottom: 15px;

}

.eg-newsletter-card .form-control {

    height: 56px;

    border-radius: 12px;

    border: 1px solid var(--eg-border);

    box-shadow: none;

}

.eg-newsletter-card .form-control:focus {

    border-color: var(--eg-primary);

}

.eg-newsletter-card .eg-btn,
#egNewsletterSubmitBtn {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/*==================================================
CAREERS HERO
==================================================*/

.eg-careers-hero {

    padding: 170px 0 120px;

    background: var(--eg-bg);

}

.eg-careers-hero-content {

    max-width: 620px;

}

.eg-careers-hero-title {

    margin: 25px 0;

    font-size: 64px;

    font-weight: 700;

    line-height: 1.15;

    color: var(--eg-text);

}

.eg-careers-hero-description {

    margin-bottom: 40px;

    font-size: 18px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

.eg-careers-hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 55px;

}

.eg-careers-hero-stats {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

}

.eg-careers-stat-card {

    flex: 1;

    min-width: 160px;

    padding: 25px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: 20px;

    transition: var(--eg-transition);

}

.eg-careers-stat-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.eg-careers-stat-card h3 {

    margin-bottom: 8px;

    font-size: 34px;

    font-weight: 700;

    color: var(--eg-primary);

}

.eg-careers-stat-card span {

    display: block;

    font-size: 15px;

    color: var(--eg-text-light);

}

.eg-careers-hero-image {

    text-align: center;

}

.eg-careers-hero-image img {

    max-width: 100%;

    height: auto;

}

/*==================================================
WHY JOIN EXPOLIO
==================================================*/

.eg-careers-why {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-careers-feature-card {

    height: 100%;

    padding: 45px 35px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    text-align: center;

    transition: var(--eg-transition);

}

.eg-careers-feature-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.eg-careers-feature-card img {

    width: 85px;

    height: 85px;

    margin-bottom: 30px;

    object-fit: contain;

}

.eg-careers-feature-card h3 {

    margin-bottom: 18px;

    font-size: 28px;

    line-height: 1.3;

    color: var(--eg-text);

}

.eg-careers-feature-card p {

    margin: 0;

    line-height: 1.9;

    color: var(--eg-text-light);

}

/*==================================================
LIFE AT EXPOLIO
==================================================*/

.eg-careers-culture {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-careers-culture-image {

    overflow: hidden;

    border-radius: var(--eg-card-radius);

    box-shadow: none !important;

}

.eg-careers-culture-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.eg-careers-culture-image:hover img {

    transform: none !important;

}

.eg-careers-culture-content h2 {

    margin: 25px 0;

    font-size: 48px;

    line-height: 1.2;

}

.eg-careers-culture-content p {

    margin-bottom: 20px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

.eg-culture-highlight {

    height: 100%;

    padding: 25px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: 18px;

    transition: var(--eg-transition);

}

.eg-culture-highlight:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

.eg-culture-highlight h4 {

    margin-bottom: 8px;

    font-size: 22px;

    color: var(--eg-primary);

}

.eg-culture-highlight span {

    color: var(--eg-text-light);

}

/*==================================================
CURRENT OPPORTUNITIES
==================================================*/

.eg-careers-openings {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-job-card {

    height: 100%;

    padding: 40px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-job-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.eg-job-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}

.eg-job-header h3 {

    margin: 0;

    font-size: 28px;

    line-height: 1.3;

}

.eg-job-type {

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(0, 51, 102, .08);

    color: var(--eg-primary);

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

}

.eg-job-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 25px;

}

.eg-job-meta span {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--eg-text-light);

    font-size: 15px;

}

.eg-job-meta i {

    color: #000000;

}

.eg-job-card p {

    margin-bottom: 30px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

/*==================================================
HIRING PROCESS
==================================================*/

.eg-careers-process {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-process-card {

    position: relative;

    height: 100%;

    padding: 40px 30px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-process-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.eg-process-number {

    width: 70px;

    height: 70px;

    min-width: 70px;

    border-radius: 50%;

    background: #000;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;

    line-height: 1;

    margin: 0 auto 30px;

    position: relative;

    z-index: 2;

    user-select: none;

}

.eg-process-card h3 {

    margin-bottom: 18px;

    font-size: 26px;

    color: var(--eg-text);

}

.eg-process-card p {

    margin: 0;

    line-height: 1.9;

    color: var(--eg-text-light);

}

/*==================================================
EMPLOYEE BENEFITS
==================================================*/

.eg-careers-benefits {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-benefit-card {

    height: 100%;

    padding: 40px 35px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-benefit-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.eg-benefit-icon {

    width: 80px;

    height: 80px;

    margin-bottom: 30px;

    border-radius: 20px;

    background: rgba(0, 51, 102, .08);

    display: flex;

    align-items: center;

    justify-content: center;

}

.eg-benefit-icon i {

    font-size: 34px;

    color: var(--eg-primary);

}

.eg-benefit-card h3 {

    margin-bottom: 18px;

    font-size: 28px;

    line-height: 1.3;

    color: var(--eg-text);

}

.eg-benefit-card p {

    margin: 0;

    line-height: 1.9;

    color: var(--eg-text-light);

}

/*==================================================
CAREER FAQ
==================================================*/

.eg-careers-faq {

    padding: 120px 0;

    background: var(--eg-bg);

}

.eg-careers-accordion .accordion-item {

    margin-bottom: 20px;

    border: 1px solid var(--eg-border);

    border-radius: 16px;

    overflow: hidden;

    background: #fff;

}

.eg-careers-accordion .accordion-button {

    padding: 24px 28px;

    font-size: 20px;

    font-weight: 600;

    color: var(--eg-text);

    background: #fff;

    box-shadow: none;

}

.eg-careers-accordion .accordion-button:not(.collapsed) {

    color: var(--eg-primary);

    background: #fff;

}

.eg-careers-accordion .accordion-button:focus {

    box-shadow: none;

    border: none;

}

.eg-careers-accordion .accordion-body {

    padding: 0 28px 28px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

/*==================================================
CAREERS CTA
==================================================*/

.eg-careers-cta {

    padding: 110px 0;

    background: #ffffff;

}

.eg-careers-cta-box {

    max-width: 1050px;

    margin: 0 auto;

    padding: 80px 60px;

    text-align: center;

    background: linear-gradient(135deg, #111111, #2a2a2a);

    color: #ffffff;

    border: none;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .20);

    overflow: hidden;

    position: relative;

}

.eg-careers-cta-box .eg-section-badge {

    display: inline-block;

    padding: 10px 22px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

    color: #ffffff;

    background: transparent;

}

.eg-careers-cta-box h2 {

    margin: 20px 0 25px;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;

}

.eg-careers-cta-box p {

    max-width: 760px;

    margin: 0 auto 45px;

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255, 255, 255, .85);

}

.eg-careers-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.eg-careers-cta-buttons .eg-btn {

    min-width: 220px;

    height: 58px;

    background: #000000 !important;

    color: #ffffff !important;

    border: 2px solid #000000 !important;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

    transition: all .35s ease;

}

.eg-careers-cta-buttons .eg-btn:hover {

    background: #ffffff !important;

    color: #000000 !important;

    border-color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

.eg-careers-cta-buttons .eg-btn-outline {

    min-width: 220px;

    height: 58px;

    background: #ffffff !important;

    color: #000000 !important;

    border: 2px solid #ffffff !important;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);

    transition: all .35s ease;

}

.eg-careers-cta-buttons .eg-btn-outline:hover {

    background: transparent !important;

    color: #ffffff !important;

    border-color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

/*==================================================
CONTACT HERO
==================================================*/

.eg-contact-hero {

    padding: 170px 0 120px;

    background: var(--eg-bg);

}

.eg-contact-hero-content {

    max-width: 620px;

}

.eg-contact-hero-title {

    margin: 25px 0;

    font-size: 64px;

    line-height: 1.15;

    font-weight: 700;

    color: var(--eg-text);

}

.eg-contact-hero-description {

    margin-bottom: 40px;

    font-size: 18px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

.eg-contact-hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 45px;

}

.eg-contact-highlights {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.eg-contact-highlight {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 17px;

    color: var(--eg-text);

}

.eg-contact-highlight i {

    color: var(--eg-primary);

    font-size: 18px;

}

.eg-contact-hero-image {

    text-align: center;

}

.eg-contact-hero-image img {

    max-width: 100%;

    height: auto;

}

/*==================================================
CONTACT INFORMATION
==================================================*/

.eg-contact-info {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-contact-card {

    height: 100%;

    padding: 40px 30px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: var(--eg-card-radius);

    transition: var(--eg-transition);

}

.eg-contact-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.eg-contact-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: rgba(0, 51, 102, .08);

}

.eg-contact-icon i {

    font-size: 34px;

    color: var(--eg-primary);

}

.eg-contact-card h3 {

    margin-bottom: 18px;

    font-size: 26px;

    color: var(--eg-text);

}

.eg-contact-card p {

    margin-bottom: 20px;

    line-height: 1.8;

    color: var(--eg-text-light);

}

.eg-contact-card a {

    display: inline-block;

    font-weight: 600;

    color: var(--eg-primary);

    text-decoration: none;

}

.eg-contact-card a:hover {

    text-decoration: underline;

}

/*==================================================
MICROSOFT CONTACT FORM
==================================================*/

.eg-contact-form-section {

    padding: 120px 0;

    background: #fff;

}

.eg-contact-form-content {

    max-width: 500px;

}

.eg-contact-form-content h2 {

    margin: 20px 0;

    font-size: 46px;

    line-height: 1.25;

    color: var(--eg-text);

}

.eg-contact-form-content p {

    margin-bottom: 35px;

    font-size: 17px;

    line-height: 1.9;

    color: var(--eg-text-light);

}

.eg-contact-benefits {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.eg-contact-benefit {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}

.eg-contact-benefit i {

    margin-top: 4px;

    color: var(--eg-primary);

    font-size: 18px;

}

.eg-contact-benefit span {

    color: var(--eg-text);

    line-height: 1.7;

}

.eg-microsoft-form {

    overflow: hidden;

    border: 1px solid var(--eg-border);

    border-radius: 20px;

    background: #fff;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);

}

.eg-microsoft-form iframe {

    width: 100%;

    height: 920px;

    border: 0;

    display: block;

}

/*==================================================
OFFICE LOCATION
==================================================*/

.eg-office-location {

    padding: 120px 0;

    background: var(--eg-section);

}

.eg-office-map {

    height: 100%;

    min-height: 520px;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid var(--eg-border);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);

}

.eg-office-map iframe {

    width: 100%;

    height: 100%;

}

.eg-office-card {

    height: 100%;

    padding: 45px;

    background: #fff;

    border: 1px solid var(--eg-border);

    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);

}

.eg-office-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid var(--eg-border);

}

.eg-office-item:last-child {

    border-bottom: none;

    padding-bottom: 0;

}

.eg-office-item:first-child {

    padding-top: 0;

}

.eg-office-item i {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: rgba(0, 51, 102, .08);

    color: var(--eg-primary);

    font-size: 22px;

    flex-shrink: 0;

}

.eg-office-item h4 {

    margin-bottom: 8px;

    font-size: 20px;

    color: var(--eg-text);

}

.eg-office-item p {

    margin: 0;

    color: var(--eg-text-light);

    line-height: 1.8;

}

/*==================================================
CONTACT FAQ
==================================================*/

.eg-contact-faq {

    padding: 120px 0;

    background: #fff;

}

.eg-contact-faq .accordion {

    margin-top: 20px;

}

.eg-contact-faq .accordion-item {

    margin-bottom: 18px;

    border: 1px solid var(--eg-border);

    border-radius: 18px;

    overflow: hidden;

    background: #fff;

}

.eg-contact-faq .accordion-button {

    padding: 24px 30px;

    font-size: 18px;

    font-weight: 600;

    color: var(--eg-text);

    background: #fff;

    box-shadow: none;

}

.eg-contact-faq .accordion-button:not(.collapsed) {

    background: #fff;

    color: var(--eg-primary);

}

.eg-contact-faq .accordion-button:focus {

    box-shadow: none;

    border: none;

}

.eg-contact-faq .accordion-body {

    padding: 0 30px 28px;

    color: var(--eg-text-light);

    line-height: 1.9;

}

/*==================================================
CONTACT CTA
==================================================*/

.eg-contact-cta {

    padding: 110px 0;

    background: #ffffff;

}

.eg-contact-cta-box {

    max-width: 1050px;

    margin: auto;

    padding: 80px 60px;

    text-align: center;

    background: linear-gradient(135deg, #111111, #2a2a2a);

    color: #ffffff;

    border: none;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .20);

    overflow: hidden;

    position: relative;

}

.eg-contact-cta-box .eg-section-badge {

    display: inline-block;

    padding: 10px 22px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

    color: #ffffff;

    background: transparent;

}

.eg-contact-cta-box h2 {

    margin: 20px 0 25px;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;

}

.eg-contact-cta-box p {

    max-width: 760px;

    margin: 0 auto 45px;

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255, 255, 255, .85);

}

.eg-contact-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.eg-contact-cta-buttons .eg-btn {

    min-width: 220px;

    height: 58px;

    background: #000000 !important;

    color: #ffffff !important;

    border: 2px solid #000000 !important;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

    transition: all .35s ease;

}

.eg-contact-cta-buttons .eg-btn:hover {

    background: #ffffff !important;

    color: #000000 !important;

    border-color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

.eg-contact-cta-buttons .eg-btn-outline {

    min-width: 220px;

    height: 58px;

    background: #ffffff !important;

    color: #000000 !important;

    border: 2px solid #ffffff !important;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);

    transition: all .35s ease;

}

.eg-contact-cta-buttons .eg-btn-outline:hover {

    background: transparent !important;

    color: #ffffff !important;

    border-color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(255, 255, 255, .15);

}

/*=====================================================
    EXPOLIO BOOKING MODAL
======================================================*/

.eg-booking-modal {

    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;

    z-index: 99999;

}

.eg-booking-modal.active {

    opacity: 1;
    visibility: visible;

}

.eg-booking-container {

    width: 100%;
    max-width: 1100px;

    height: 90vh;

    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12),
        0 5px 20px rgba(0, 0, 0, .08);

    display: flex;
    flex-direction: column;

    transform: translateY(40px) scale(.98);

    transition: .35s ease;

}

.eg-booking-modal.active .eg-booking-container {

    transform: translateY(0) scale(1);

}

/*=========================
Header
=========================*/

.eg-booking-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 28px 36px;

    border-bottom: 1px solid #ECECEC;

    background: #ffffff;

}

.eg-booking-header h2 {

    margin: 0;

    font-size: 28px;

    font-weight: 700;

    color: #111827;

}

.eg-booking-header p {

    margin-top: 8px;

    color: #6B7280;

    font-size: 15px;

}

/*=========================
Close Button
=========================*/

.eg-booking-close {

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    background: #F5F5F5;

    cursor: pointer;

    transition: .25s;

    flex-shrink: 0;

}

.eg-booking-close:hover {

    background: #111827;

    color: #ffffff;

}

/*=========================
Body
=========================*/

.eg-booking-body {

    position: relative;

    flex: 1;

    background: #ffffff;

}

.eg-booking-body iframe {

    width: 100%;

    height: 100%;

    border: none;

    display: none;

}

/*=========================
Loading
=========================*/

.eg-booking-loader {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    z-index: 2;

}

.eg-booking-loader h4 {

    margin-top: 25px;

    margin-bottom: 8px;

    font-size: 22px;

}

.eg-booking-loader p {

    color: #6B7280;

    text-align: center;

}

/*=========================
Spinner
=========================*/

.eg-spinner {

    width: 56px;

    height: 56px;

    border: 4px solid #E5E7EB;

    border-top: 4px solid #111827;

    border-radius: 50%;

    animation: bookingSpin .8s linear infinite;

}

@keyframes bookingSpin {

    to {

        transform: rotate(360deg);

    }

}

/*==================================================
    CATEGORY SLIDESHOW / CAROUSEL
===================================================*/
.eg-category-slideshow-section {
    padding: 60px 0 90px;
    background: #fafbfc;
    overflow: hidden;
}

.eg-category-slideshow-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 24px;
    flex-wrap: wrap;
}

.eg-category-slideshow-header-left {
    max-width: 680px;
}

.eg-slideshow-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--eg-text);
    margin: 12px 0 8px;
    line-height: 1.25;
}

.eg-slideshow-subtitle {
    font-size: 16px;
    color: var(--eg-text-light);
    margin-bottom: 0;
}

.eg-category-slideshow-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eg-carousel-arrows-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eg-carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--eg-border);
    background: #ffffff;
    color: var(--eg-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--eg-transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.eg-carousel-nav-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
}

.eg-view-all-catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff !important;
    border-radius: var(--eg-btn-radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--eg-transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.eg-view-all-catalogue-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.eg-category-carousel-wrapper {
    position: relative;
    width: 100%;
}

.eg-category-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 12px 4px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.eg-category-carousel-track::-webkit-scrollbar {
    display: none;
}

.eg-category-carousel-track.active {
    cursor: grabbing;
}

.eg-category-slide-card {
    flex: 0 0 320px;
    background: #ffffff;
    border: 1px solid var(--eg-border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.eg-category-slide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #4b5563);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eg-category-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: #d1d5db;
}

.eg-category-slide-card:hover::before {
    opacity: 1;
}

.eg-cat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.eg-cat-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--eg-transition);
}

.eg-category-slide-card:hover .eg-cat-icon-wrapper {
    background: #000000;
    color: #ffffff;
}

.eg-cat-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #e6f5fc;
    color: #0a9bd4;
    padding: 4px 10px;
    border-radius: 999px;
}

.eg-cat-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--eg-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.eg-cat-desc {
    font-size: 14px;
    color: var(--eg-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eg-cat-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.eg-cat-count {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eg-cat-explore-btn {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease;
}

.eg-category-slide-card:hover .eg-cat-explore-btn {
    transform: translateX(4px);
    color: #000000;
}

/*==================================================
    TOPMATE-STYLE CATALOGUE
===================================================*/
.eg-catalogue-hero {
    padding: 160px 0 50px;
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--eg-border);
}

.eg-catalogue-hero-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.eg-catalogue-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #f3f4f6;
    color: #1f2937;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.eg-catalogue-badge i {
    color: #f59e0b;
}

.eg-catalogue-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--eg-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.eg-catalogue-subtitle {
    font-size: 18px;
    color: var(--eg-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.eg-catalogue-search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.eg-catalogue-search-box input {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 46px 0 50px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 999px;
    font-size: 15px;
    color: var(--eg-text);
    transition: var(--eg-transition);
    outline: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    line-height: normal;
}

.eg-catalogue-search-box input:focus {
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.eg-search-icon,
.eg-catalogue-search-box .eg-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    pointer-events: none;
    z-index: 5;
    line-height: 1;
    margin: 0;
}

.eg-search-clear-btn,
.eg-catalogue-search-box .eg-search-clear-btn,
.eg-search-input-group .eg-search-clear-btn {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #e5e7eb !important;
    border: none !important;
    border-radius: 50% !important;
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #4b5563 !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.eg-search-clear-btn:hover,
.eg-catalogue-search-box .eg-search-clear-btn:hover,
.eg-search-input-group .eg-search-clear-btn:hover {
    background: #d1d5db !important;
    color: #111827 !important;
}

/* Category Tabs (Sticky) */
.eg-catalogue-tabs-section {
    position: sticky;
    top: var(--eg-header-height, 80px);
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--eg-border);
    padding: 14px 0;
}

.eg-catalogue-tabs-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
}

.eg-catalogue-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.eg-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.eg-cat-pill:hover {
    background: #e5e7eb;
    color: #111827;
}

.eg-cat-pill.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.eg-pill-count {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
}

.eg-cat-pill.active .eg-pill-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Catalogue Listing & Topmate Cards */
.eg-catalogue-listing-section {
    padding: 40px 0 80px;
    background: #f8fafc;
    min-height: 600px;
}

.eg-catalogue-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.eg-filter-info {
    font-size: 16px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eg-results-badge {
    font-size: 12px;
    font-weight: 700;
    background: #f3f4f6;
    color: #111827;
    padding: 4px 12px;
    border-radius: 999px;
}

.eg-back-to-overview-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.eg-back-to-overview-btn:hover {
    color: #000000;
}

.eg-catalogue-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.eg-topmate-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    position: relative;
}

.eg-topmate-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.eg-topmate-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.eg-card-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 999px;
}

.eg-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #b45309;
    background: #fef3c7;
    padding: 4px 10px;
    border-radius: 999px;
}

.eg-service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.35;
    min-height: 54px;
}

.eg-service-card-desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 12px;
}

.eg-service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.eg-service-card-features li {
    font-size: 12.5px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.45;
}

.eg-service-card-features li i {
    color: #10b981;
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.eg-service-card-notes {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.55;
    background: #f8fafc;
    border-left: 3px solid #000000;
    padding: 8px 12px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.eg-service-card-notes i {
    color: #000000;
    margin-top: 3px;
    font-size: 13px;
}

.eg-service-timeline {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.eg-topmate-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    gap: 12px;
}

.eg-price-box {
    display: flex;
    flex-direction: column;
}

.eg-price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.eg-price-value {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.eg-book-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.eg-book-service-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    border: 1px solid #000000;
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.eg-no-results {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px dashed #cbd5e1;
}

.eg-no-results-icon {
    font-size: 48px;
    color: #9ca3af;
    margin-bottom: 16px;
}

/* Custom Quote CTA Banner */
.eg-catalogue-cta-section {
    padding: 0 0 90px;
    background: #f8fafc;
}

.eg-catalogue-cta-card {
    background: #111827;
    color: #ffffff;
    border-radius: 28px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.eg-catalogue-cta-content {
    max-width: 620px;
}

.eg-cta-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #60a5fa;
    margin-bottom: 12px;
}

.eg-catalogue-cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.eg-catalogue-cta-content p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 0;
}

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

/*==================================================
    CHECKOUT PAGE STYLES
===================================================*/
.eg-checkout-section {
    padding: 150px 0 100px;
    background: #f8fafc;
}

.eg-checkout-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.eg-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.eg-back-link:hover {
    color: #000000;
}

.eg-checkout-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
}

.eg-checkout-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.eg-checkout-form-header {
    margin-bottom: 30px;
}

.eg-form-step {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4f46e5;
    background: #eef2ff;
    padding: 4px 10px;
    border-radius: 999px;
}

.eg-checkout-form-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 12px 0 8px;
}

.eg-checkout-form-header p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 0;
}

.eg-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.eg-input-wrapper {
    position: relative;
}

.eg-input-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #9ca3af;
    font-size: 16px;
}

.eg-form-control {
    width: 100%;
    height: 52px;
    padding: 0 18px 0 48px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    font-size: 15px;
    color: #111827;
    transition: var(--eg-transition);
    outline: none;
}

.eg-form-control:focus {
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.eg-textarea {
    height: auto;
    padding: 14px 18px;
    resize: vertical;
}

.eg-phone-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.eg-country-prefix-select-wrap {
    position: relative;
    width: 110px;
    flex-shrink: 0;
}

.eg-country-prefix-select {
    width: 100%;
    height: 52px;
    padding: 0 24px 0 12px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    transition: var(--eg-transition);
}

.eg-country-prefix-select:focus {
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.eg-custom-prefix-wrap {
    position: relative;
    width: 110px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.eg-custom-prefix-input {
    width: 100%;
    height: 52px;
    padding: 0 32px 0 12px;
    background: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    transition: var(--eg-transition);
}

.eg-custom-prefix-reset {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 12px;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.eg-custom-prefix-reset:hover {
    color: #000000;
    background: #f3f4f6;
}

.eg-select-wrapper {
    position: relative;
}

.eg-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 38px;
}

.eg-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.eg-select-wrapper:focus-within .eg-select-arrow {
    color: #000000;
}

/* Searchable Country Dropdown */
.eg-searchable-country-dropdown {
    position: relative;
    width: 100%;
}

.eg-country-trigger {
    position: relative;
    width: 100%;
    height: 52px;
    padding: 0 38px 0 48px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    font-size: 15px;
    color: #111827;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--eg-transition);
    user-select: none;
    outline: none;
}

.eg-country-trigger:hover {
    border-color: #d1d5db;
    background: #ffffff;
}

.eg-country-trigger:focus,
.eg-searchable-country-dropdown.is-open .eg-country-trigger {
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.eg-country-selected {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.eg-country-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
    animation: egDropdownFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.eg-searchable-country-dropdown.is-open .eg-country-menu {
    display: block;
}

.eg-searchable-country-dropdown.is-open .eg-select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #000000;
}

.eg-country-search-wrap {
    position: relative;
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
}

.eg-country-search-wrap i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 13px;
    pointer-events: none;
}

.eg-country-search-input {
    width: 100%;
    height: 38px;
    padding: 0 12px 0 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13.5px;
    color: #111827;
    outline: none;
    transition: all 0.2s ease;
}

.eg-country-search-input:focus {
    border-color: #000000;
}

.eg-country-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 240px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.eg-country-option {
    padding: 8px 14px;
    font-size: 13.5px;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.eg-country-option:hover,
.eg-country-option.is-highlighted {
    background: #f3f4f6;
    color: #000000;
}

.eg-country-option.is-selected {
    background: #f0fdf4;
    color: #166534;
    font-weight: 600;
}

.eg-country-option-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eg-country-option-code {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.eg-country-no-results {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

@keyframes egDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eg-payment-gateway-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 22px 0 24px;
    transition: all 0.25s ease;
}

.eg-gateway-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eg-gateway-text strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 3px;
    line-height: 1.3;
}

.eg-gateway-text p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

.eg-btn-block {
    width: 100%;
    justify-content: center;
    height: 54px;
    font-size: 16px;
    font-weight: 700;
}

.eg-summary-pay-action {
    width: 100%;
}

.eg-proceed-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100% !important;
    height: 52px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.eg-proceed-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.eg-proceed-pay-btn i {
    font-size: 14px;
}

/* Order Summary Card */
.eg-order-summary-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: calc(var(--eg-header-height, 80px) + 20px);
}

.eg-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.eg-summary-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0;
}

.eg-summary-cat-badge {
    font-size: 12px;
    font-weight: 700;
    color: #0a9bd4;
    background: #e6f5fc;
    padding: 4px 12px;
    border-radius: 999px;
}

.eg-summary-service-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.eg-summary-note {
    font-size: 13.5px;
    color: #4b5563;
    background: #f8fafc;
    border-left: 3px solid #000000;
    padding: 8px 12px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.eg-summary-note i {
    color: #000000;
    margin-top: 3px;
}

.eg-summary-meta-row {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #6b7280;
}

.eg-summary-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 22px 0;
}

.eg-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eg-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #4b5563;
}

.eg-breakdown-val {
    font-weight: 600;
    color: #111827;
}

.eg-breakdown-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.eg-total-amount {
    font-size: 26px;
    font-weight: 800;
    color: #000000;
}

.eg-trust-badges {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f9fafb;
    border-radius: 16px;
    padding: 18px 20px;
}

.eg-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.eg-trust-item i {
    font-size: 18px;
    margin-top: 2px;
}

.eg-trust-item strong {
    font-size: 13px;
    color: #1f2937;
    display: block;
}

.eg-trust-item p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
}

/*==================================================
    SUCCESS / CONFIRMATION PAGE
===================================================*/
.eg-success-section {
    padding: 160px 0 100px;
    background: #f8fafc;
}

.eg-success-card-wrapper {
    max-width: 740px;
    margin: 0 auto;
}

.eg-success-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 50px 48px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.eg-success-header {
    text-align: center;
    margin-bottom: 36px;
}

.eg-success-icon-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.1);
}

.eg-success-subheading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #059669;
    display: block;
    margin-bottom: 8px;
}

.eg-success-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.eg-success-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.eg-receipt-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.eg-receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
    gap: 16px;
    flex-wrap: wrap;
}

.eg-receipt-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.eg-receipt-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0f9ff;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.eg-receipt-main-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.eg-receipt-subtitle {
    font-size: 12px;
    color: #64748b;
    display: block;
}

.eg-paid-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 800;
    color: #065f46;
    background: #d1fae5;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.12);
}

.eg-receipt-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.eg-receipt-meta-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eg-receipt-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    gap: 12px;
}

.eg-r-label {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex-shrink: 0;
}

.eg-r-val {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    text-align: right;
    word-break: break-all;
}

.eg-receipt-items-container {
    margin-bottom: 24px;
}

.eg-receipt-section-heading {
    font-size: 12px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.eg-receipt-items-table-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.eg-receipt-items-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.eg-receipt-items-table thead th {
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.eg-receipt-items-table thead th.eg-col-price {
    text-align: right;
}

.eg-receipt-items-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px;
    vertical-align: middle;
}

.eg-receipt-items-table tbody tr:last-child td {
    border-bottom: none;
}

.eg-receipt-items-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.eg-col-item {
    width: 60%;
}

.eg-col-qty {
    width: 20%;
    text-align: center;
}

.eg-col-price {
    width: 20%;
    text-align: right;
    white-space: nowrap;
}

.eg-receipt-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0f172a;
}

.eg-receipt-item-desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 3px;
    padding-left: 22px;
}

.eg-qty-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 700;
    font-size: 11.5px;
    padding: 4px 10px;
    border-radius: 6px;
}

.eg-receipt-totals-box {
    display: flex;
    justify-content: flex-end;
    padding-top: 14px;
}

.eg-receipt-totals-inner {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
}

.eg-receipt-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.eg-calc-val {
    color: #0f172a;
    font-weight: 700;
    font-family: monospace;
    font-size: 13.5px;
}

.eg-receipt-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 8px 0;
}

.eg-receipt-grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eg-grand-total-label {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.eg-grand-total-val {
    font-size: 22px;
    font-weight: 900;
    color: #059669;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .eg-receipt-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .eg-receipt-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .eg-receipt-meta-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .eg-receipt-items-table thead {
        display: none;
    }

    .eg-receipt-items-table tbody td {
        display: block;
        width: 100%;
        padding: 6px 14px;
        border: none;
    }

    .eg-receipt-items-table tbody tr {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .eg-receipt-items-table tbody tr:last-child {
        border-bottom: none;
    }

    .eg-col-qty {
        text-align: left;
        padding-left: 36px !important;
    }

    .eg-col-price {
        text-align: right;
        padding-top: 0 !important;
        font-size: 14px;
    }

    .eg-receipt-totals-inner {
        max-width: 100%;
        padding: 14px 16px;
    }

    .eg-grand-total-val {
        font-size: 19px;
    }
}

.eg-next-steps-box {
    margin-bottom: 36px;
}

.eg-next-steps-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.eg-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eg-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.eg-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eg-step-text strong {
    font-size: 14px;
    color: #1f2937;
    display: block;
    margin-bottom: 2px;
}

.eg-step-text p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

.eg-success-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 680px;
    margin: 32px auto 0 auto;
    width: 100%;
}

.eg-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    outline: none;
}

.eg-success-btn i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Row 1: Document / PDF Actions */
.eg-success-btn-pdf {
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eg-success-btn-pdf i {
    color: #dc2626;
}

.eg-success-btn-pdf:hover {
    background: #f8fafc;
    border-color: #0f172a;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.eg-success-btn-print {
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eg-success-btn-print i {
    color: #0f172a;
}

.eg-success-btn-print:hover {
    background: #f8fafc;
    border-color: #0f172a;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

/* Row 2: Direct Actions */
.eg-success-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: 1.5px solid #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.eg-success-btn-whatsapp i {
    color: #ffffff;
    font-size: 18px;
}

.eg-success-btn-whatsapp:hover {
    background: #1ebc59;
    border-color: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.eg-success-btn-whatsapp:hover i {
    color: #ffffff;
}

.eg-success-btn-services {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.eg-success-btn-services i {
    color: #ffffff;
    font-size: 15px;
    transition: color 0.25s ease;
}

.eg-success-btn-services:hover {
    background: #ffffff;
    border-color: #000000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.eg-success-btn-services:hover i {
    color: #000000;
}

@media (max-width: 640px) {
    .eg-payment-gateway-notice {
        padding: 14px 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .eg-gateway-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .eg-gateway-text strong {
        font-size: 13px;
    }

    .eg-gateway-text p {
        font-size: 12px;
    }

    .eg-country-prefix-select-wrap,
    .eg-custom-prefix-wrap {
        width: 95px;
    }

    .eg-country-prefix-select,
    .eg-custom-prefix-input {
        font-size: 13px;
        padding: 0 18px 0 8px;
    }

    .eg-success-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        margin-top: 24px;
    }

    .eg-success-btn {
        height: 48px;
        font-size: 13.5px;
        padding: 0 16px;
    }
}

@media (max-width: 991px) {
    .eg-catalogue-title {
        font-size: 36px;
    }

    .eg-catalogue-cta-card {
        padding: 36px 30px;
    }

    .eg-checkout-form-card,
    .eg-order-summary-card,
    .eg-success-card {
        padding: 28px 20px;
    }

    .eg-receipt-details-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================================
    CATEGORY TABS SLIDER ARROWS & MULTI-SELECT
===================================================*/
.eg-category-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.eg-tab-slide-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--eg-border);
    color: var(--eg-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    transition: all 0.25s ease;
    z-index: 10;
}

.eg-tab-slide-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: scale(1.08);
}

.eg-tab-slide-btn:active {
    transform: scale(0.95);
}

.eg-catalogue-tabs-scroll {
    flex: 1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px;
    scroll-behavior: smooth;
}

/* Multi-Select Topmate Card States */
.eg-topmate-card.is-selected {
    border-color: #000000;
    background: #fafafa;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.eg-card-selected-ribbon {
    display: none;
    position: absolute;
    top: -10px;
    right: 20px;
    background: #000000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    z-index: 5;
    letter-spacing: 0.3px;
}

.eg-topmate-card.is-selected .eg-card-selected-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.eg-card-btn-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eg-select-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    border: 1.5px solid #e5e7eb;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eg-select-toggle-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.eg-select-toggle-btn.selected {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.eg-direct-book-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.eg-direct-book-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    border: 1px solid #000000;
    transform: scale(1.08);
}

/* Floating Multi-Service Cart Bar */
.eg-floating-cart-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eg-floating-cart-bar.visible {
    bottom: 0;
}

.eg-cart-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.eg-cart-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eg-cart-icon-circle {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.eg-cart-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111827;
}

.eg-cart-count-text {
    font-size: 15px;
    color: #f3f4f6;
}

.eg-cart-count-text strong {
    color: #ffffff;
    font-weight: 700;
}

.eg-cart-price-text {
    font-size: 14px;
    color: #9ca3af;
}

.eg-cart-price-text strong {
    font-size: 18px;
    color: #10b981;
    font-weight: 800;
}

.eg-cart-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.eg-cart-clear-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eg-cart-clear-btn:hover {
    color: #ef4444;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.eg-checkout-trigger-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eg-checkout-trigger-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    transform: translateY(-2px);
}

/* Multi-Item Checkout Summary List */
.eg-checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.eg-checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    gap: 12px;
}

.eg-checkout-item-main {
    flex: 1;
}

.eg-item-cat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.eg-item-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.35;
}

.eg-item-note {
    font-size: 12px;
    color: #64748b;
}

.eg-checkout-item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.eg-item-price {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.eg-remove-item-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    color: #64748b;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eg-remove-item-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Receipt Itemized Sublist */
.eg-receipt-items-sublist {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eg-receipt-subitem {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 13.5px;
    color: #334155;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
    gap: 16px;
}

.eg-receipt-subitem:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.eg-subitem-title-col {
    flex: 1;
}

.eg-subitem-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.eg-subitem-qty {
    font-size: 12px;
    color: #111827;
    margin-top: 2px;
}

.eg-subitem-price {
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

/* Custom Quote Redirect Button on Card */
.eg-quote-redirect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #1e293b;
    color: #ffffff !important;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

.eg-quote-redirect-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    border: 1px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

/* Per-User Quantity Stepper in Checkout */
.eg-per-user-control-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.eg-per-user-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eg-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    overflow: hidden;
}

.eg-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f1f5f9;
    color: #1e293b;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease;
}

.eg-qty-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.eg-qty-input {
    width: 44px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    -moz-appearance: textfield;
}

.eg-qty-input::-webkit-outer-spin-button,
.eg-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*==================================================
    INDUSTRY DETAIL PAGE THEME STYLES
===================================================*/
.eg-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--eg-text-light);
    margin-bottom: 20px;
}

.eg-detail-breadcrumb a {
    color: var(--eg-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.eg-detail-breadcrumb a:hover {
    color: #000000;
}

.eg-detail-breadcrumb i {
    font-size: 10px;
    color: #999999;
}

.eg-detail-breadcrumb .active {
    color: #111111;
    font-weight: 600;
}

.eg-industry-show-hero-img {
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    display: block;
}

.bg-light-section {
    background: var(--eg-section) !important;
}

.eg-overview-paragraph {
    font-size: 17px;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 24px;
}

.eg-show-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.eg-show-features-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.eg-show-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    font-weight: 700;
}

.eg-column-subheading {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    display: flex;
    align-items: center;
}

.eg-theme-panel {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.03);
    transition: all 0.3s ease;
}

.eg-theme-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
    border-color: #000000;
}

.eg-theme-number {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    background: #F3F4F6;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eg-theme-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000000;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.eg-theme-panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.eg-theme-panel-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .eg-show-features-list {
        grid-template-columns: 1fr;
    }
}

/*==================================================
    PORTFOLIO SLIDESHOW & CASE STUDY THEME STYLES
===================================================*/
.eg-projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.eg-proj-slide-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--eg-border);
    color: var(--eg-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: all 0.25s ease;
    z-index: 10;
}

.eg-proj-slide-btn:hover {
    background: #000000;
    color: #FFFFFF;
    border-color: #000000;
    transform: scale(1.08);
}

.eg-proj-slide-btn.left {
    margin-right: 12px;
}

.eg-proj-slide-btn.right {
    margin-left: 12px;
}

.eg-projects-scroll-track {
    flex: 1;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.eg-projects-scroll-track::-webkit-scrollbar {
    display: none;
}

.eg-portfolio-slide-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    display: flex;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
}

.eg-portfolio-featured-card {
    background: #FFFFFF;
    border: 1px solid var(--eg-border);
    border-radius: var(--eg-card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04);
    transition: all 0.35s ease;
}

.eg-portfolio-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.10);
    border-color: #000000;
}

.eg-portfolio-featured-image {
    height: 200px;
    background: #f7f8fa;
    overflow: hidden;
}

.eg-portfolio-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.eg-portfolio-featured-card:hover .eg-portfolio-featured-image img {
    transform: scale(1.04);
}

.eg-portfolio-featured-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eg-proj-cat-badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #000000;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.eg-portfolio-featured-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.35;
}

.eg-portfolio-featured-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.eg-proj-client-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #64748b;
    line-height: 1;
}

.eg-proj-client-row i {
    font-size: 13px;
    color: #475569;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    flex-shrink: 0;
}

.eg-proj-client-row span {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #64748b;
    line-height: 1.2;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}

.eg-proj-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    width: 100%;
}

.eg-view-cs-link {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    line-height: 1;
}

.eg-btn-see-live {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    background: #0284c7;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.eg-btn-see-live span {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
}

.eg-btn-see-live:hover {
    background: #0369a1;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.eg-btn-see-live:hover span {
    color: #ffffff !important;
}

.eg-btn-see-live:focus,
.eg-btn-see-live:active {
    color: #ffffff !important;
}

/* Case Study Hero See Live Button */
.eg-btn-see-live.eg-btn-see-live-hero {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.eg-btn-see-live.eg-btn-see-live-hero span {
    font-size: 15px;
    color: #ffffff !important;
}

.eg-btn-see-live.eg-btn-see-live-hero i {
    font-size: 13px;
    color: #ffffff !important;
}

.eg-btn-see-live.eg-btn-see-live-hero:hover {
    background: #0369a1;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(2, 132, 199, 0.4);
}

/* Case Study Meta Pill Live */
.eg-cs-meta-pill-live {
    background: #0284c7 !important;
    color: #ffffff !important;
    border-color: #0284c7 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.eg-cs-meta-pill-live strong,
.eg-cs-meta-pill-live span,
.eg-cs-meta-pill-live i {
    color: #ffffff !important;
}

.eg-cs-meta-pill-live:hover {
    background: #0369a1 !important;
    border-color: #0369a1 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.eg-view-cs-link span {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}

.eg-view-cs-link i {
    font-size: 12px;
    color: inherit;
    transition: transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin: 0 !important;
}

.eg-view-cs-link:hover {
    color: #000000;
    text-decoration: underline;
}

.eg-view-cs-link:hover i {
    transform: translateX(4px);
}

/* Case Study Details Styles */
.eg-cs-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eg-cs-meta-pill {
    background: #f8f9fb;
    border: 1px solid #e5e5e5;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.eg-cs-meta-pill:hover {
    border-color: #111111;
}

.eg-case-study-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.eg-case-study-hero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none !important;
    filter: none !important;
    margin: 0 auto;
    display: block;
}

.eg-btn-see-live-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    padding: 10px 22px;
    background: #0284c7;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    transition: all 0.25s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.eg-btn-see-live-overlay span {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1;
}

.eg-btn-see-live-overlay i {
    color: #ffffff !important;
    font-size: 12px;
    line-height: 1;
}

.eg-btn-see-live-overlay:hover {
    background: #0369a1;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.6);
}

.eg-btn-see-live-overlay:hover span,
.eg-btn-see-live-overlay:hover i {
    color: #ffffff !important;
}

.eg-testimonial-single-box {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.eg-testimonial-single-box::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 80px;
    line-height: 1;
    color: #f0f0f0;
    font-family: Georgia, serif;
    pointer-events: none;
}

.eg-testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #222222;
    line-height: 1.65;
}

.eg-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

/*==================================================
    SINGLE BLOG POST & ARTICLE THEME STYLES
===================================================*/
.eg-article-author-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--eg-text-light);
    margin-top: 18px;
}

.eg-author-meta-item {
    display: inline-flex;
    align-items: center;
}

.eg-author-meta-item i {
    color: #111827;
}

.eg-article-featured-img-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.eg-article-featured-img {
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

.eg-key-takeaways-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
}

.eg-takeaways-header {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eg-takeaways-header i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 50%;
    color: #000000;
    font-size: 14px;
    flex-shrink: 0;
}

.eg-takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eg-takeaways-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    color: #334155;
    margin-bottom: 10px;
    line-height: 1.6;
}

.eg-takeaways-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

.eg-article-prose {
    font-size: 17px;
    line-height: 1.85;
    color: #333333;
}

.eg-article-prose h2,
.eg-article-prose h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-top: 36px;
    margin-bottom: 16px;
}

.eg-article-prose p {
    margin-bottom: 22px;
}

.eg-article-prose ul,
.eg-article-prose ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.eg-article-prose li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.eg-author-bio-card {
    display: flex;
    gap: 20px;
    background: #fdfdfd;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 26px;
    align-items: flex-start;
}

.eg-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.eg-author-bio-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.eg-author-role {
    font-size: 13px;
    color: #666666;
    display: block;
    margin-bottom: 8px;
}

.eg-author-bio-content p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 0;
    line-height: 1.5;
}

/*==================================================
    ALL INSIGHTS FILTER & SEARCH TOOLBAR
===================================================*/
.eg-blog-filter-toolbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--eg-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.eg-blog-categories-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eg-blog-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #f3f4f6;
    color: #333333;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.eg-blog-filter-pill:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.eg-blog-filter-pill.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.eg-blog-search-form {
    width: 100%;
}

.eg-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.eg-search-input-group .eg-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 15px;
    pointer-events: none;
    z-index: 5;
    line-height: 1;
    margin: 0;
}

.eg-search-input {
    width: 100%;
    height: 48px;
    min-height: 48px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    padding: 0 44px 0 46px;
    font-size: 14px;
    color: #111111;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    line-height: normal;
}

.eg-search-input:focus {
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .eg-prototypes-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .eg-prototypes-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .eg-prototypes-tabs::-webkit-scrollbar {
        display: none;
    }

    .eg-prototypes-right-controls {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
    }

    .eg-prototypes-search {
        flex: 1 1 auto;
        min-width: 0 !important;
        max-width: 100%;
    }

    .eg-prototypes-nav-btns {
        flex-shrink: 0;
    }

    .eg-proto-modal-wrapper {
        width: 98%;
        height: 94vh;
    }
}

@media (max-width: 767px) {
    .eg-blog-filter-toolbar {
        padding: 16px;
        gap: 14px;
    }

    .eg-blog-categories-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .eg-blog-categories-bar::-webkit-scrollbar {
        display: none;
    }

    .eg-blog-filter-pill {
        white-space: nowrap;
        font-size: 12.5px;
        padding: 6px 14px;
    }
}

@media (max-width: 991px) {
    .eg-portfolio-slide-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/*==================================================
    CAREERS OPENINGS & APPLICATION MODAL STYLES
===================================================*/
.eg-job-card {
    background: #ffffff;
    border: 1px solid var(--eg-border);
    border-radius: var(--eg-card-radius);
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.eg-job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.eg-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.eg-job-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
}

.eg-job-type {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f4f6;
    color: #111111;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.eg-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.eg-job-meta span {
    display: inline-flex;
    align-items: center;
}

.eg-job-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.eg-job-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.eg-job-email-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.eg-job-email-link:hover {
    color: #000000;
}

/* Job Application Modal */
.eg-job-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.eg-job-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.eg-job-modal-container {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e5e7eb;
    position: relative;
    animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.eg-job-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 32px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.eg-job-modal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #000000;
    margin-bottom: 8px;
}

.eg-job-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.eg-job-modal-meta {
    font-size: 13.5px;
}

.eg-job-modal-close {
    background: #f3f4f6;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.eg-job-modal-close:hover {
    background: #000000;
    color: #ffffff;
}

.eg-job-modal-body {
    padding: 28px 32px 32px;
}

@media (max-width: 767px) {
    .eg-job-card {
        padding: 24px 18px;
    }

    .eg-job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .eg-job-meta {
        gap: 10px;
        font-size: 12.5px;
    }

    .eg-job-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .eg-job-action-row .eg-btn {
        width: 100%;
        text-align: center;
    }

    .eg-job-email-link {
        text-align: center;
        padding-top: 6px;
    }

    .eg-job-modal-header {
        padding: 20px 20px 16px;
    }

    .eg-job-modal-title {
        font-size: 20px;
    }

    .eg-job-modal-body {
        padding: 20px;
    }
}

/*==================================================
    STICKY MOBILE CHECKOUT PAYMENT BAR
===================================================*/
.eg-mobile-checkout-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px)) 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1040;
}

.eg-mobile-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.eg-mobile-sticky-info {
    display: flex;
    flex-direction: column;
}

.eg-mobile-sticky-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    line-height: 1;
}

.eg-mobile-sticky-price {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-top: 2px;
}

.eg-mobile-pay-cta {
    flex: 1;
    max-width: 250px;
    height: 48px !important;
    padding: 0 18px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 991px) {
    .eg-checkout-section {
        padding-bottom: 110px !important;
    }
}

/*==================================================
    DYNAMIC TESTIMONIALS SLIDESHOW & ADD REVIEW TILE
===================================================*/
.eg-testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.eg-testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 10px 4px 24px;
}

.eg-testimonials-track::-webkit-scrollbar {
    display: none;
}

.eg-testimonial-slide-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 330px;
    display: flex;
}

.eg-testimonial-card {
    background: #ffffff;
    border: 1px solid var(--eg-border);
    border-radius: var(--eg-card-radius);
    padding: 34px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.eg-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.eg-stars {
    font-size: 15px;
    letter-spacing: 2px;
}

.eg-testimonial-text {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.eg-client {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f1f5f9;
}

.eg-client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.eg-client h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.3;
}

.eg-client span {
    font-size: 13px;
    color: #64748b;
}

/* Same-Sized "Add a Review" Tile */
.eg-add-review-card {
    background: #fafafa !important;
    border: 2px dashed #cbd5e1 !important;
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.eg-add-review-card:hover {
    background: #ffffff !important;
    border-color: #000000 !important;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.eg-add-review-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.eg-add-review-card:hover .eg-add-review-icon-wrap {
    transform: scale(1.1);
}

.eg-add-review-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.eg-add-review-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.eg-add-review-note {
    font-size: 12px;
}

/* Interactive Star Rating Picker */
.eg-interactive-rating-stars {
    display: inline-flex;
    gap: 8px;
    font-size: 28px;
    cursor: pointer;
}

.eg-interactive-rating-stars i {
    color: #d1d5db;
    transition: color 0.15s ease, transform 0.15s ease;
}

.eg-interactive-rating-stars i.active {
    color: #f59e0b;
}

.eg-interactive-rating-stars i:hover {
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .eg-testimonial-slide-item {
        flex: 0 0 calc(50% - 12px);
        min-width: 290px;
    }
}

@media (max-width: 600px) {
    .eg-testimonial-slide-item {
        flex: 0 0 100%;
        min-width: 260px;
    }

    .eg-testimonial-card {
        padding: 24px 18px;
    }
}

/*==================================================
    WHATSAPP BUTTON
==================================================*/

.eg-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 34px;
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all .35s ease;
}

.eg-btn-whatsapp i {
    font-size: 18px;
}

.eg-btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, .25);
}

/*==================================================
    CASE STUDY — TECH STACK TAGS
==================================================*/

.eg-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eg-sol-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f3f4f6;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.eg-sol-tag i {
    font-size: 11px;
    color: #555555;
}

.eg-sol-tag:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.eg-sol-tag:hover i {
    color: #ffffff;
}

/*==================================================
    LEGAL & SITEMAP PAGES
==================================================*/
.eg-legal-hero {
    background: var(--eg-bg);
    padding: 150px 0 25px;
}

.eg-legal-hero .eg-contact-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

.eg-legal-hero .eg-contact-hero-description {
    font-size: 16.5px;
    color: #4b5563;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.eg-legal-content-section {
    background: #ffffff;
    padding: 30px 0 100px;
}

.eg-legal-nav-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.eg-legal-nav-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}

.eg-legal-nav .nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: #4b5563 !important;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
    padding: 8px 0 8px 14px !important;
    border-radius: 0 8px 8px 0;
}

.eg-legal-nav .nav-link:hover,
.eg-legal-nav .nav-link:focus,
.eg-legal-nav .nav-link.active {
    color: #000000 !important;
    border-left-color: #000000;
    background: #f8fafc;
    padding-left: 18px !important;
    font-weight: 600;
}

.eg-legal-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.eg-legal-article {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}

.eg-policy-block {
    margin-bottom: 45px;
}

.eg-policy-block:last-child {
    margin-bottom: 0;
}

.eg-policy-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.3px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.eg-policy-block p,
.eg-policy-block li {
    font-size: 15.5px;
    line-height: 1.85;
    color: #4b5563;
}

.eg-legal-info-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
}

.eg-legal-info-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eg-legal-info-card h6 i {
    color: #111827;
}

.eg-legal-info-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
}

.eg-legal-contact-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    margin-top: 20px;
}

.eg-legal-contact-box h5 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.eg-legal-contact-box p {
    font-size: 14.5px;
    color: #4b5563;
    margin-bottom: 8px;
}

.eg-legal-contact-box p i {
    color: #111827;
    width: 20px;
}

/* SITEMAP STYLES */
.eg-sitemap-section {
    background: var(--eg-bg);
    padding: 30px 0 100px;
}

.eg-sitemap-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.eg-sitemap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
    border-color: #111827;
}

.eg-sitemap-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f3f4f6;
}

.eg-sitemap-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.eg-sitemap-header h4 {
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}

.eg-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eg-sitemap-list li {
    padding: 9px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.eg-sitemap-list li:last-child {
    border-bottom: none;
}

.eg-sitemap-list a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.eg-sitemap-list a i {
    color: #9ca3af;
    font-size: 11px;
    transition: all 0.2s ease;
}

.eg-sitemap-list a:hover {
    color: #000000;
    transform: translateX(4px);
    font-weight: 600;
}

.eg-sitemap-list a:hover i {
    color: #000000;
}

/*==================================================
    STICKY SCROLL TO TOP BUTTON
==================================================*/
.eg-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    outline: none;
}

.eg-scroll-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.eg-scroll-top:hover {
    background: #1e293b;
    color: #ffffff;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.eg-scroll-top:active {
    transform: translateY(-1px) scale(0.98);
}

@media (max-width: 768px) {
    .eg-scroll-top {
        bottom: 24px;
        right: 18px;
        width: 46px;
        height: 46px;
        font-size: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
        transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease,
            background-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    body:has(.eg-floating-cart-bar.visible) .eg-scroll-top,
    body.eg-cart-bar-active .eg-scroll-top {
        bottom: 148px !important;
    }

    body:has(.eg-mobile-checkout-sticky-bar) .eg-scroll-top,
    body.eg-checkout-active .eg-scroll-top {
        bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

@media (min-width: 769px) and (max-width: 991px) {

    body:has(.eg-floating-cart-bar.visible) .eg-scroll-top,
    body.eg-cart-bar-active .eg-scroll-top {
        bottom: 115px !important;
    }

    body:has(.eg-mobile-checkout-sticky-bar) .eg-scroll-top,
    body.eg-checkout-active .eg-scroll-top {
        bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

body.eg-menu-open .eg-scroll-top {
    display: none !important;
}

/*==================================================
    INTERACTIVE REACT PROTOTYPES SHOWCASE (EXPOLIO THEME)
==================================================*/
.eg-prototypes-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.eg-prototypes-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 44px auto;
}

.eg-prototypes-header .eg-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    border: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.eg-prototypes-header .eg-section-tag i {
    font-size: 14px;
    color: #111;
}

.eg-prototypes-header .eg-section-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: var(--eg-text);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.eg-prototypes-header .eg-section-description {
    color: var(--eg-text-light);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 auto;
}

/* Controls Bar */
.eg-prototypes-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    background: #ffffff;
    border: 1px solid var(--eg-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 10px 16px;
    border-radius: 16px;
}

.eg-prototypes-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.eg-proto-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.eg-proto-tab:hover {
    color: #000000;
    background: #f3f4f6;
}

.eg-proto-tab.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.eg-proto-tab .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.eg-proto-tab:not(.active) .tab-count {
    background: #e5e7eb;
    color: #4b5563;
}

.eg-prototypes-right-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    justify-content: flex-end;
}

.eg-prototypes-search {
    position: relative;
    min-width: 220px;
    max-width: 320px;
    flex-grow: 1;
}

.eg-prototypes-nav-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.eg-prototypes-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.eg-prototypes-search input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    background: #f9fafb;
    border: 1px solid var(--eg-border);
    border-radius: 999px;
    color: var(--eg-text);
    font-size: 13.5px;
    outline: none;
    transition: all 0.25s ease;
}

.eg-prototypes-search input:focus {
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.eg-prototypes-search input::placeholder {
    color: #9ca3af;
}

/* Horizontal Carousel Track & Cards (Matching Expolio Card System) */
.eg-prototypes-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.eg-prototypes-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 12px 4px 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.eg-prototypes-track::-webkit-scrollbar {
    display: none;
}

.eg-prototypes-track.active {
    cursor: grabbing;
    scroll-snap-type: none;
}

.eg-proto-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--eg-border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.eg-proto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #4b5563);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eg-proto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: #d1d5db;
}

.eg-proto-card:hover::before {
    opacity: 1;
}

.eg-proto-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.eg-proto-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--eg-transition);
    flex-shrink: 0;
}

.eg-proto-card:hover .eg-proto-icon-box {
    background: #000000;
    color: #ffffff;
}

.eg-proto-badge-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.eg-proto-domain-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ffffff;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    padding: 3px 10px;
    border-radius: 999px;
}

.eg-proto-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
    padding: 3px 9px;
    border-radius: 999px;
}

.eg-live-dot {
    width: 6px;
    height: 6px;
    background: #111827;
    border-radius: 50%;
}

.eg-proto-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eg-proto-card-title {
    font-size: 18.5px;
    font-weight: 700;
    color: var(--eg-text);
    margin-bottom: 8px;
    line-height: 1.35;
}

.eg-proto-card-desc {
    font-size: 14px;
    color: var(--eg-text-light);
    line-height: 1.6;
    margin-bottom: 18px;
}

.eg-proto-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.eg-proto-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #374151;
}

.eg-proto-card-features li i {
    color: #111827;
    font-size: 13px;
    flex-shrink: 0;
}

.eg-proto-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
    margin-top: auto;
}

.eg-tech-pill {
    padding: 3px 9px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: #4b5563;
}

/* Card Footer Actions */
.eg-proto-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #f3f4f6;
}

.eg-proto-play-btn {
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.eg-proto-play-btn:hover {
    background: #1f2937;
    border-color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.eg-proto-ext-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 1px solid var(--eg-border);
    border-radius: 999px;
    color: #111827;
    font-size: 14px;
    transition: all 0.25s ease;
}

.eg-proto-ext-btn:hover {
    color: #ffffff;
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

/* Empty State */
.eg-proto-empty {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    margin-top: 20px;
}

.eg-proto-empty i {
    font-size: 48px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.eg-proto-empty h4 {
    font-size: 20px;
    color: var(--eg-text);
    margin-bottom: 8px;
}

.eg-proto-empty p {
    color: var(--eg-text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.eg-btn-reset-filters {
    padding: 10px 24px;
    background: #000000;
    border: none;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

/* ==================================================
    LIVE DEVICE PREVIEW MODAL
================================================== */
.eg-proto-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.eg-proto-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.eg-proto-modal-wrapper {
    width: 100%;
    max-width: 1380px;
    height: 90vh;
    background: #ffffff;
    border: 1px solid var(--eg-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.eg-proto-modal-backdrop.is-open .eg-proto-modal-wrapper {
    transform: scale(1);
}

.eg-proto-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.eg-proto-modal-meta .eg-proto-modal-category {
    font-size: 11px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eg-proto-modal-meta .eg-proto-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.eg-proto-viewport-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 10px;
}

.eg-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eg-view-btn:hover {
    color: #111827;
}

.eg-view-btn.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.eg-proto-modal-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eg-modal-ctrl-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.eg-modal-ctrl-btn:hover {
    color: #000000;
    background: #e5e7eb;
}

.eg-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
}

.eg-proto-modal-body {
    flex-grow: 1;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    position: relative;
}

.eg-proto-frame-wrapper {
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.eg-proto-frame-wrapper.viewport-desktop {
    width: 100%;
}

.eg-proto-frame-wrapper.viewport-tablet {
    width: 768px;
}

.eg-proto-frame-wrapper.viewport-mobile {
    width: 390px;
}

.eg-proto-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Loading Spinner */
.eg-proto-frame-loading {
    position: absolute;
    inset: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 10;
}

.eg-proto-frame-loading .spinner {
    width: 44px;
    height: 44px;
    border: 3px solid #e5e7eb;
    border-top-color: #000000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.eg-proto-frame-loading p {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .eg-prototypes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .eg-proto-modal-wrapper {
        width: 98%;
        height: 92vh;
    }
}

@media (max-width: 991px) {
    .eg-prototypes-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .eg-prototypes-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .eg-proto-tab {
        flex-shrink: 0;
    }

    .eg-prototypes-right-controls {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
    }

    .eg-prototypes-search {
        flex: 1 1 auto;
        min-width: 0 !important;
        max-width: 100%;
    }

    .eg-prototypes-nav-btns {
        flex-shrink: 0;
    }

    .eg-proto-viewport-switcher span {
        display: none;
    }
}

@media (max-width: 768px) {
    .eg-prototypes-section {
        padding: 60px 0;
    }

    .eg-prototypes-header {
        margin-bottom: 30px;
    }

    .eg-prototypes-header .eg-section-title {
        font-size: 26px;
    }

    .eg-prototypes-header .eg-section-description {
        font-size: 14.5px;
    }

    .eg-prototypes-track {
        gap: 16px;
        scroll-snap-type: x mandatory;
        padding: 8px 0 20px;
    }

    .eg-proto-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
        border-radius: 16px;
        padding: 20px 18px;
    }

    .eg-proto-icon-box {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .eg-proto-card-title {
        font-size: 17px;
    }

    .eg-proto-play-btn {
        font-size: 12.5px;
        padding: 10px 14px;
    }

    .eg-proto-ext-btn {
        width: 40px;
        height: 40px;
    }

    /* Mobile Modal */
    .eg-proto-modal-backdrop {
        padding: 8px;
    }

    .eg-proto-modal-wrapper {
        width: 100%;
        height: 96vh;
        border-radius: 14px;
    }

    .eg-proto-modal-header {
        padding: 10px 12px;
        gap: 8px;
    }

    .eg-proto-modal-meta {
        max-width: 55%;
    }

    .eg-proto-modal-meta .eg-proto-modal-title {
        font-size: 13.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .eg-proto-modal-meta .eg-proto-modal-category {
        font-size: 10px;
    }

    .eg-proto-viewport-switcher {
        display: none;
    }

    .eg-proto-modal-body {
        padding: 6px;
    }

    .eg-proto-frame-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 8px;
    }

    .eg-modal-ctrl-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .eg-prototypes-section {
        padding: 50px 0;
    }

    .eg-prototypes-header .eg-section-title {
        font-size: 23px;
    }

    .eg-proto-card-footer {
        flex-direction: row;
    }
}

/*==================================================
    RIGHT STICKY VERTICALLY CENTERED SOCIAL BAR
==================================================*/
.eg-sticky-social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding: 8px 0;
    pointer-events: auto;
}

.eg-sticky-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #111111;
    color: #ffffff;
    border: 1px solid #282828;
    border-right: none;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 6px 18px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    font-size: 17px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eg-sticky-social-item i {
    transition: transform 0.3s ease;
}

/* Hover: expand width to the left while keeping background completely filled to the right edge */
.eg-sticky-social-item:hover {
    width: 58px;
    box-shadow: -8px 10px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.eg-sticky-social-item:hover i {
    transform: scale(1.18);
}

/* Brand-specific hover colors */
.eg-sticky-social-item.eg-sticky-linkedin:hover {
    background: #0077b5;
    color: #ffffff;
}

.eg-sticky-social-item.eg-sticky-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.eg-sticky-social-item.eg-sticky-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
}

.eg-sticky-social-item.eg-sticky-x:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.eg-sticky-social-item.eg-sticky-youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.eg-sticky-social-item.eg-sticky-facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

/* Hide on mobile and tablet view - Desktop only */
@media (max-width: 991.98px) {
    .eg-sticky-social-bar {
        display: none !important;
    }
}