﻿/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

/* Set padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

.trusted-strip {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    z-index: 10;
}

.trusted-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trusted-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.trusted-divider {
    width: 1px;
    height: 36px;
    background-color: #e0e0e0;
    flex-shrink: 0;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trusted-logo-item img {
        height: 44px;
        width: auto;
        max-width: 130px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.55;
        transition: filter 0.3s ease, opacity 0.3s ease;
    }

        .trusted-logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

/* For logos that need a dark background (like PAU) */
.dark-bg-logo {
    background-color: #111 !important;
    padding: 6px 10px !important;
    border-radius: 4px;
}

/* Responsive — stack label above logos on small screens */
@media (max-width: 768px) {
    .trusted-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .trusted-divider {
        display: none;
    }

    .trusted-logos {
        gap: 20px;
    }

    .trusted-label {
        white-space: normal;
    }
}

.service-header {
    margin-bottom: 1.5rem
}

    .service-header h4 {
        font-family: 'Playfair Display',serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--color-text-primary);
        margin-bottom: 8px
    }

.accent-line {
    width: 40px;
    height: 3px;
    background: #ee6002;
    border-radius: 2px;
    margin-bottom: 1rem
}

.service-header p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    max-width: 100%;
}

.projects-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0F6E56;
    margin-bottom: 12px;
    margin-top: 1.75rem
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 10px
}

.proj-card {
    background: var(--color-background-primary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 14px 16px;
    transition: border-color 0.2s,box-shadow 0.2s
}

    .proj-card:hover {
        border-color: #0F6E56
    }

.proj-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: var(--border-radius-md);
    margin-bottom: 8px
}

.tag-web {
    background: #E1F5EE;
    color: #085041
}

.tag-mobile {
    background: #E6F1FB;
    color: #0C447C
}

.tag-db {
    background: #FAEEDA;
    color: #633806
}

.tag-mis {
    background: #EEEDFE;
    color: #3C3489
}

.proj-card h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    line-height: 1.4
}

.proj-card p {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.5
}

.layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start
}

.section-intro {
    margin-bottom: 2rem
}

    .section-intro p {
        font-size: 13px;
        color: var(--color-text-secondary);
        line-height: 1.6;
        font-style: italic
    }

.clients-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Fade edges for a polished look */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

/* Pause on hover */
.clients-marquee-wrapper:hover .clients-marquee-track {
    animation-play-state: paused;
}

.client-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}

    .client-item img {
        max-height: 80px;
        max-width: 180px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.65;
        transition: filter 0.3s ease, opacity 0.3s ease;
    }

    /* Colour and brighten on hover */
    .client-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.wcu-section {
    background-color: whitesmoke;
    padding: 8vh 0;
    margin-top:1vh;
}

.wcu-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.wcu-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F6E56;
    margin-bottom: 10px;
}

.wcu-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

    .wcu-heading h2 em {
        color: #ee6002;
        font-style: normal;
    }

.wcu-sub {
    font-size: 15px;
    color: #777;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wcu-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 28px 22px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

    .wcu-card:hover {
        border-color: #ee6002;
        transform: translateY(-4px);
    }

.card-number {
    position: absolute;
    top: -8px;
    right: 14px;
    font-size: 80px;
    font-weight: 700;
    color: #ee6002;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.25s;
}

.wcu-card:hover .card-number {
    opacity: 0.09;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #FFF3EA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ee6002;
    font-size: 20px;
}

.card-accent {
    width: 32px;
    height: 3px;
    background: #ee6002;
    border-radius: 2px;
    margin-bottom: 14px;
}

.wcu-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.wcu-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 992px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
}


.callback-form .contact-form textarea {
    min-width: 95% !important;
}

.slider-text-background {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
}


/* ── Sidebar Nav ── */
.services-nav {
    position: sticky;
    top: 20px;
}

.services-nav-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 12px;
    padding: 0 4px;
}

.services-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .services-nav ul li {
        margin-bottom: 4px;
    }

.snav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

    .snav-item:hover, .snav-item.active {
        background: #fff;
        border-color: #e0e0e0;
        color: #222;
        box-shadow: 0 1px 6px rgba(0,0,0,0.06);
        text-decoration: none;
    }

    .snav-item.active {
        border-left: 3px solid #ee6002;
        color: #ee6002;
    }

.snav-icon {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.snav-item.active .snav-icon {
    background: #FFF3EA;
    color: #ee6002;
}

.snav-item:hover .snav-icon {
    background: #FFF3EA;
    color: #ee6002;
}

.snav-arrow {
    margin-left: auto;
    font-size: 13px;
    opacity: 0.4;
}

.snav-highlight {
    position: relative;
}

    .snav-highlight::after {
        content: 'New';
        position: absolute;
        right: 34px;
        top: 50%;
        transform: translateY(-50%);
        background: #0F6E56;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 999px;
        letter-spacing: 0.05em;
    }

/* ── Sidebar CTA ── */
.sidebar-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #0F6E56 100%);
    border-radius: 10px;
    padding: 20px 18px;
    color: #fff;
    text-align: center;
    margin-top: 2vh;
}

.sidebar-cta-icon {
    font-size: 28px;
    color: #9FE1CB;
    margin-bottom: 10px;
    display: block;
}

.sidebar-cta h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.sidebar-cta p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 0;
}

.sidebar-cta .filled-button {
    background: #ee6002 !important;
    border-color: #ee6002 !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
    margin-top: 12px;
}

/* ── Tab Hero Image ── */
.tab-hero-img {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

    .tab-hero-img img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

.tab-hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(238,96,2,0.92);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.tab-hero-badge--ai {
    background: rgba(15,110,86,0.92);
}

/* ── Service Header ── */
.service-header {
    margin-bottom: 1.75rem;
}

    .service-header h4 {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 8px;
    }

.accent-line {
    width: 36px;
    height: 3px;
    background: #ee6002;
    border-radius: 2px;
    margin-bottom: 14px;
}

.service-header p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* ── Projects Label ── */
.projects-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0F6E56;
    margin-bottom: 14px;
    display: block;
}

/* ── Project Cards Grid ── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 2rem;
}

.proj-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

    .proj-card:hover {
        border-color: #ee6002;
        transform: translateY(-2px);
    }

    .proj-card h4 {
        font-size: 13px;
        font-weight: 600;
        color: #222;
        margin: 8px 0 6px;
    }

    .proj-card p {
        font-size: 12px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

.proj-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 6px;
}

.tag-web {
    background: #E1F5EE;
    color: #085041;
}

.tag-mobile {
    background: #E6F1FB;
    color: #0C447C;
}

.tag-db {
    background: #FAEEDA;
    color: #633806;
}

.tag-mis {
    background: #EEEDFE;
    color: #3C3489;
}

/* ── AI Curriculum ── */
.ai-curriculum {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.ai-week {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.week-badge {
    flex-shrink: 0;
    background: #FFF3EA;
    color: #854F0B;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    margin-top: 2px;
    white-space: nowrap;
}

.ai-week strong {
    font-size: 13px;
    color: #222;
    display: block;
    margin-bottom: 3px;
}

.ai-week span {
    font-size: 12px;
    color: #666;
    line-height: 1.55;
}

/* ── AI Stats ── */
.ai-stats-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.ai-stat {
    flex: 1;
    background: whitesmoke;
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.ai-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #ee6002;
}

.ai-stat-lbl {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

/* ── AI Form Card ── */
.ai-form-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 26px 22px;
}

    .ai-form-card h4 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 6px;
    }

.ai-form-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.ai-cohort-notice {
    background: #E1F5EE;
    border: 1px solid #5DCAA5;
    border-radius: 8px;
    padding: 11px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

    .ai-cohort-notice i {
        color: #0F6E56;
        font-size: 18px;
        flex-shrink: 0;
    }

    .ai-cohort-notice p {
        margin: 0;
        font-size: 12px;
        color: #085041;
        line-height: 1.5;
    }

/* ── Responsive ── */
@media (max-width: 768px) {
    .tab-hero-img img {
        height: 200px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .services-nav {
        position: static;
        margin-bottom: 24px;
    }
}

/*input, select, textarea {
    max-width: 100% !important;
}*/