
:root {
    --tp: {{ $t['primary'] }};
    --ts: {{ $t['secondary'] }};
    --tb: {{ $t['bg'] }};
    --tt: {{ $t['title'] }};
}

@if( !empty($campaign->theme) && $campaign->theme !== 'none')
body, #smooth-wrapper, #smooth-content {
    background: var(--tb) !important;
}
@endif

.hero-area {
    background: transparent !important;
    padding: 48px 0 !important;
}

.hero-content {
    padding-top: 10px;
}

.heading-text {
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 53px;
    line-height: 1.1;
}

.form-card {
    position: sticky;
    top: 100px;
    border-radius: 12px;
}

.row>div {
    align-items: flex-start;
}

.form-content {
    margin-top: 61px;
}

.logo-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-card img {
    max-height: 150px;
    object-fit: contain;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Logo Slider */
.logos-slider {
    position: relative;
    overflow: hidden;
}

.logos-track {
    display: flex;
    transition: transform 0.4s ease;
}

.logos-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    box-sizing: border-box;
}

.logos-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.logos-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.logos-btn:hover {
    border-color: var(--tp);
    color: var(--tp);
}

.btn-vyb {
    background: #FF6100;
    border: none;
    color: #fff;
}

.btn-vyb:hover {
    background: #FF6100;
    border: none;
    color: #fff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-description {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 16px;
}

.hero-description p {
    margin-bottom: 0.75rem;
}

/* HIW */
.hiw-section {
    padding: 80px 0 60px;
}

.hiw-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FF6100;
    margin-bottom: 0;
}

.hiw-main-heading {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.1;
}

.hiw-main-heading span {
    color: #FF6100;
}

.hiw-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    overflow-x: auto;
    padding-bottom: 8px;
}

.hiw-nav::-webkit-scrollbar {
    height: 3px;
}

.hiw-nav::-webkit-scrollbar-track {
    background: transparent;
}

.hiw-nav::-webkit-scrollbar-thumb {
    background: #FF6100;
    border-radius: 2px;
}

.hiw-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    min-width: 90px;
    flex-shrink: 0;
}

.hiw-nav-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1e1e1e;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hiw-nav-item.active .hiw-nav-circle {
    background: #FF6100;
    border-color: #FF6100;
    color: #fff;
}

.hiw-nav-item:hover:not(.active) .hiw-nav-circle {
    border-color: #FF6100;
    color: #FF6100;
}

.hiw-nav-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    margin-top: 8px;
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.hiw-nav-item.active .hiw-nav-label {
    color: #FF6100;
}

.hiw-nav-connector {
    flex: 1;
    height: 2px;
    background: #2a2a2a;
    margin-top: 25px;
    min-width: 30px;
    max-width: 120px;
    position: relative;
    flex-shrink: 1;
    transition: background 0.3s ease;
}

.hiw-nav-connector.passed {
    background: #FF6100;
}

.hiw-content-area {
    position: relative;
    min-height: 200px;
}

.hiw-step-panel {
    display: none;
    animation: hiwFadeIn 0.35s ease;
}

.hiw-step-panel.active {
    display: block;
}

@keyframes hiwFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hiw-step-card {
    border-left: 4px solid #FF6100;
    border-radius: 12px;
    padding: 36px 40px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.hiw-step-card::after {
    content: attr(data-num);
    position: absolute;
    right: 32px;
    bottom: 16px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hiw-step-tag {
    display: inline-block;
    background: transparent;
    border: 1px solid #FF6100;
    color: #FF6100;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 16px;
}

.hiw-step-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hiw-step-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.hiw-step-desc p {
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 0.5rem;
}

.hiw-step-desc *,
.hiw-step-desc span,
.hiw-step-desc div {
    color: rgb(153 153 153) !important;
}

.hiw-step-bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.hiw-step-bullets li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 0 10px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.6;
}

.hiw-step-bullets li::before {
    content: '✓';
    color: #FF6100;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3px;
    width: 20px;
}

.hiw-step-bullets li strong {
    color: #fff;
    white-space: nowrap;
    margin-right: 4px;
}

.hiw-step-bullets li .bullet-text {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0 0;
}

.hiw-step-bullets li .bullet-text strong {
    text-align: left;
    min-width: 0;
}

@media (max-width: 768px) {
    .hiw-step-bullets li .bullet-text {
        grid-template-columns: 1fr;
    }

    .hiw-step-bullets li .bullet-text strong {
        text-align: left;
        padding-right: 0;
    }
}

.hiw-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    background: #FF6100;
    border: 2px solid #FF6100;
    color: black;
    border-radius: 35px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
}

.hiw-btn:hover {
    opacity: 0.88;
    color: #fff;
    transform: translateY(-1px);
}

/* FAQ */
.faq-section {
    padding: 80px 0 60px;
}

.faq-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FF6100;
    text-align: center;
    margin-bottom: 6px;
}

.faq-main-heading {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.1;
}

.faq-main-heading span {
    color: #FF6100;
}

.faq-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    background: rgba(255, 97, 0, 0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    transition: color 0.3s ease;
    flex: 1;
}

.faq-item.open .faq-question-text {
    color: #FF6100;
}

.faq-toggle-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-toggle-btn {
    background: #FF6100;
    border-color: #FF6100;
    color: #fff;
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
}

.faq-answer strong,
.faq-answer b {
    color: rgba(255, 255, 255, 0.9);
}

.faq-answer {
    color: rgba(255, 255, 255, 0.85) !important;
}

.faq-answer,
.faq-answer p,
.faq-answer li,
.faq-answer span,
.faq-answer * {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
}

/* Plain Rich */
.plain-rich-section {
    padding-top: 0px;
    padding-bottom: 0px;
}

.rich-content-wrap {
    width: 100%;
    overflow: hidden;
}

.rich-content-wrap>div {
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-area {
        padding: 40px 0 50px !important;
    }

    .hero-area .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-area .row {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-area .col-md-7,
    .hero-area .col-md-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        min-width: 0 !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-area .form-card {
        position: relative !important;
        top: auto !important;
        margin-top: 40px !important;
        width: 100% !important;
    }

    .hero-area .form-content {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
    }

    .hero-title,
    h1.hero-title {
        font-size: 42px !important;
        line-height: 1.05 !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 8px !important;
    }

    .hero-title .outline,
    h1.hero-title span.outline {
        -webkit-text-stroke: 2px #ffffff !important;
        color: transparent !important;
        font-size: 42px !important;
    }

    .heading-text {
        font-size: 22px !important;
        line-height: 1.25 !important;
        letter-spacing: 0.04em !important;
    }

    .hero-description {
        font-size: 15px !important;
        line-height: 1.65 !important;
        opacity: 0.9 !important;
    }

    .hero-description p {
        font-size: 15px !important;
        margin-bottom: 0.5rem !important;
    }

    .form-card {
        position: relative;
        top: 0;
        margin-top: 20px;
        width: 100%;
    }

    .form-content {
        margin-top: 20px;
    }

    .row {
        flex-direction: column;
    }

    .col-md-7,
    .col-md-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .logo-card {
        height: 100px;
        padding: 12px;
    }

    .logo-card img {
        max-height: 70px;
    }

    .work-details-area .row {
        justify-content: center !important;
    }

    .work-details-area .col-6 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .work-details-area .logo-card {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
    }

    .rich-content-wrap {
        overflow: hidden;
    }

    .rich-content-wrap>div,
    .rich-content-wrap>div[style] {
        padding: 20px 16px !important;
        border-radius: 10px;
        overflow: hidden;
    }

    .rich-content-wrap [style*="padding:60px"],
    .rich-content-wrap [style*="padding: 60px"] {
        padding: 18px 14px !important;
    }

    .plain-rich-section.container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        overflow: hidden;
    }

    section.container.text-white {
        padding-left: 12px !important;
        padding-right: 12px !important;
        overflow: hidden;
    }

    .cta-vybe__eyebrow {
        font-size: 13px;
        padding: 0 8px;
        margin-bottom: 12px;
    }

    #floatingCTA {
        right: 12px !important;
        bottom: 80px !important;
        gap: 8px !important;
    }

    #floatingCTA a {
        width: 46px !important;
        height: 46px !important;
    }

    #floatingCTA a i {
        font-size: 18px !important;
    }

    .work-details-area {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .hiw-section {
        padding: 50px 0 40px;
    }

    .hiw-main-heading {
        font-size: 22px;
    }

    .hiw-subtitle {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .hiw-nav {
        justify-content: flex-start;
        padding: 0 4px 12px;
        gap: 0;
    }

    .hiw-nav-item {
        min-width: 70px;
    }

    .hiw-nav-circle {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .hiw-nav-label {
        font-size: 10px;
        max-width: 66px;
    }

    .hiw-nav-connector {
        margin-top: 20px;
        min-width: 16px;
    }

    .hiw-step-card {
        padding: 24px 20px;
    }

    .hiw-step-card::after {
        font-size: 64px;
        right: 16px;
        bottom: 10px;
    }

    .hiw-step-title {
        font-size: 20px;
    }

    .hiw-step-desc {
        font-size: 14px;
    }

    .hiw-step-bullets li {
        font-size: 14px;
    }

    .faq-section {
        padding: 50px 0 40px;
    }

    .faq-main-heading {
        font-size: 22px;
    }

    .faq-subtitle {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-toggle-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .rich-content-wrap * {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .rich-content-wrap [style*="width"] {
        width: 100% !important;
        min-width: 0 !important;
    }

    .rich-content-wrap>div>div {
        flex-direction: column !important;
        width: 100% !important;
    }

    .rich-content-wrap [style*="display:grid"],
    .rich-content-wrap [style*="display: grid"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .rich-content-wrap div {
        min-width: 0;
    }
}

@media (max-width: 400px) {
    .heading-text {
        font-size: 18px;
    }

    .logo-card {
        height: 80px;
        padding: 8px;
    }

    .logo-card img {
        max-height: 55px;
    }

    .hiw-nav-item {
        min-width: 58px;
    }

    .hiw-nav-circle {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
}

/* Custom Sections */
.custom-section {
    padding: 60px 0 40px;
}

.custom-section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FF6100;
    text-align: center;
    margin-bottom: 8px;
}

.custom-section-video {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 24px auto 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    height: auto;
}

.custom-section-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.custom-section-images {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.custom-section-images img {
    height: 200px;
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-section-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Modal */
#campaignFormModal .form-control:focus {
    background: #2a2a2a !important;
    border-color: #FF6100 !important;
    box-shadow: 0 0 0 3px rgba(255, 97, 0, 0.2) !important;
    color: #fff !important;
}

#campaignFormModal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

#campaignFormModal select option {
    background: #2a2a2a;
    color: #fff;
}

.modal-backdrop {
    z-index: 1040 !important;
}

#campaignFormModal {
    z-index: 1050 !important;
}

#campaignFormModal .modal-dialog {
    position: relative !important;
    z-index: 1051 !important;
}

#campaignFormModal,
#campaignFormModal *,
#campaignFormModal input,
#campaignFormModal select,
#campaignFormModal textarea,
#campaignFormModal button {
    cursor: auto !important;
    pointer-events: auto !important;
}

#campaignFormModal .modal-content {
    position: relative !important;
    z-index: 1052 !important;
}

.modal-backdrop {
    pointer-events: none !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Theme Overrides */
.btn-vyb {
    background: var(--tp) !important;
    border-color: var(--tp) !important;
}

.btn-vyb:hover {
    background: var(--tp) !important;
    opacity: 0.9;
}

.hiw-btn {
    background: #ffffff !important;
}

.hiw-btn:hover {
    opacity: 0.88;
}

.hiw-eyebrow,
.faq-eyebrow,
.custom-section-eyebrow {
    color: var(--tp) !important;
}

.hiw-step-tag {
    color: var(--tp) !important;
    border-color: var(--tp) !important;
}

.hiw-step-card {
    border-color: var(--tp) !important;
    border-left-color: var(--tp) !important;
}

.hiw-step-bullets li::before {
    color: var(--tp) !important;
}

.hiw-nav-item.active .hiw-nav-circle {
    background: var(--tp) !important;
    border-color: var(--tp) !important;
    box-shadow: 0 0 20px color-mix(in srgb, var(--tp) 40%, transparent) !important;
}

.hiw-nav-item.active .hiw-nav-label {
    color: var(--tp) !important;
}

.hiw-nav-item:hover:not(.active) .hiw-nav-circle {
    border-color: var(--tp) !important;
    color: var(--tp) !important;
}

.hiw-nav-connector.passed {
    background: var(--tp) !important;
}

.hiw-main-heading span,
.faq-main-heading span {
    color: var(--tp) !important;
}

.faq-item.open {
    border-color: var(--tp) !important;
    background: color-mix(in srgb, var(--tp) 4%, transparent) !important;
}

.faq-item.open .faq-question-text {
    color: var(--tp) !important;
}

.faq-item.open .faq-toggle-btn {
    background: var(--tp) !important;
    border-color: var(--tp) !important;
}

.form-card {
    border-top: 4px solid var(--tp) !important;
}

.form-card h4 {
    color: var(--tp) !important;
}

.hiw-nav::-webkit-scrollbar-thumb {
    background: var(--tp) !important;
}

.cta-vybe__eyebrow {
    color: var(--tp) !important;
}

#campaignFormModal .modal-content {
    border-color: var(--tp) !important;
}

#campaignFormModal .form-control:focus {
    border-color: var(--tp) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--tp) 20%, transparent) !important;
}

@media (max-width: 768px) {
    .custom-section {
        padding: 40px 0 24px;
    }

    .custom-section-images img {
        height: 140px;
    }
}

/* Testimonial Slider */
.testi-grid {
    position: relative;
    overflow: hidden;
}

.testi-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.testi-card {
    min-width: calc(33.333% - 12px);
    width: calc(33.333% - 12px);
    margin-right: 18px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: stretch;
}

@media (max-width: 768px) {
    .testi-grid {
        overflow: hidden;
    }

    .testi-card {
        min-width: 100% !important;
        width: 100% !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .testi-slider-track {
        width: 100% !important;
    }
}

#campaignFormModal .modal-dialog {
    margin: auto !important;
}

@media (max-width: 768px) {
    #campaignFormModal .modal-dialog {
        margin-top: 20px !important;
    }
}

.testi-quote {
    font-size: 60px;
    color: var(--tp);
    line-height: 1;
    margin-bottom: 8px;
    font-family: serif;
}

.testi-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tp);
    flex-shrink: 0;
}

.testi-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--tp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.testi-designation {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testi-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.testi-btn:hover {
    border-color: var(--tp);
    color: var(--tp);
}

/* Image Slider */
.cs-img-slider {
    position: relative;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 12px;
}

.cs-img-track {
    display: flex;
    transition: transform 0.4s ease;
}

.cs-img-slide {
    min-width: 50%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    box-sizing: border-box;
}

.cs-img-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .cs-img-slide {
        min-width: 100%;
        width: 100%;
        padding: 0;
    }

    .cs-img-slide img {
        height: 220px;
    }
}

.cs-img-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.cs-img-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cs-img-btn:hover {
    border-color: var(--tp);
    color: var(--tp);
}

@media (max-width: 768px) {

    .plain-rich-section .rich-content-wrap [style*="display:grid"],
    .plain-rich-section .rich-content-wrap [style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    .plain-rich-section .rich-content-wrap [style*="display:flex"],
    .plain-rich-section .rich-content-wrap [style*="display: flex"] {
        flex-wrap: wrap !important;
    }

    .plain-rich-section .rich-content-wrap>div>div {
        width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .plain-rich-section .rich-content-wrap div[style*="width: 28px"],
    .plain-rich-section .rich-content-wrap div[style*="width:28px"] {
        width: 41px !important;
        height: 41px !important;
        min-width: 18px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .cs-img-slide img {
        height: 180px;
    }

    .testi-card {
        padding: 20px 16px;
    }
}

.hiw-section {
    padding: 40px 0 30px;
}

.faq-section {
    padding: 40px 0 30px;
}

.testi-section {
    padding: 40px 0 30px !important;
}

.custom-section {
    padding: 30px 0 20px;
}

.work-details-area {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* Video Slider */
.cs-vid-slider {
    max-width: 100%;
    width: 100%;
    overflow: hidden !important;
    border-radius: 12px;
    margin: 24px auto 0;
    position: relative;
    margin-top: 30px;
}

.cs-vid-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    transition: transform 0.4s ease;
    align-items: stretch;
}

/* Sabhi slides (YouTube, uploaded video) — same fixed size */
.cs-vid-slide {
    flex-shrink: 0 !important;
    box-sizing: border-box;
    padding: 0 6px;
    min-width: 340px;
    width: 340px;
    height: 250px;
}

.cs-vid-slide .custom-section-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0 !important;
}

.cs-vid-slide .custom-section-video iframe,
.cs-vid-slide .custom-section-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cs-vid-slide {
        min-width: 100%;
        width: 100%;
        height: 200px;
        padding: 0;
    }
}

/* ===== Instagram apna alag slider (thumbnail + play button card) ===== */
.cs-ig-heading {
    text-align: center;
}

.cs-ig-slider {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 16px auto 0;
    position: relative;
}

.cs-ig-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    transition: transform 0.4s ease;
}

.cs-ig-slide {
    flex-shrink: 0;
    width: 320px;
}

@media (max-width: 768px) {
    .cs-ig-slide {
        width: 280px;
    }
}

.cs-ig-card {
    display: block;
    position: relative;
    width: 300px;
    height: 533px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    margin: 0 auto;
}

.cs-ig-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-ig-native-item {
    width: 320px;
    height: 480px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    display: flex;
    justify-content: flex-start;
}

.cs-ig-native-item iframe.instagram-media,
.cs-ig-native-item .instagram-media {
    width: 320px !important;
    height: 480px !important;
    min-width: 320px !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .cs-ig-native-item,
    .cs-ig-native-item iframe.instagram-media,
    .cs-ig-native-item .instagram-media {
        width: 280px !important;
        height: 440px !important;
        min-width: 280px !important;
    }
}

@media (max-width: 480px) {
    .cs-ig-native-item,
    .cs-ig-native-item iframe.instagram-media,
    .cs-ig-native-item .instagram-media {
        width: 280px !important;
        min-width: 280px !important;
        height: 440px !important;
    }
}


@media (max-width: 768px) {
    .cs-ig-slide {
        width: 220px;
    }
    .cs-ig-card {
        width: 220px;
        height: 391px;
    }
}

/* ==========================================================================
   Core Services Section
   Palette: ink #14161A, paper #F7F6F2, accent #FF5A1F, muted #6B6F76
   Type: 'Space Grotesk' for headings, 'Inter' for body/UI
   ========================================================================== */

.coreserv-area {
    background: #F7F6F2;
    color: #14161A;
    padding: 96px 24px;
}

.coreserv-area .container {
    max-width: 1180px;
    margin: 0 auto;
}

.coreserv-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FF5A1F;
    margin-bottom: 16px;
}

.coreserv-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

.coreserv-title .accent {
    color: #FF5A1F;
}

.coreserv-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #6B6F76;
    max-width: 560px;
    margin: 0 0 56px;
}

.coreserv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #E3E1D9;
    border: 1px solid #E3E1D9;
    margin-bottom: 48px;
}

.coreserv-item {
    background: #F7F6F2;
    padding: 40px 32px;
    transition: background 0.25s ease;
}

.coreserv-item:hover {
    background: #14161A;
}

.coreserv-item:hover h3 a,
.coreserv-item:hover p {
    color: #F7F6F2;
}

.coreserv-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 12px;
}

.coreserv-item h3 a {
    color: #14161A;
    text-decoration: none;
    transition: color 0.25s ease;
}

.coreserv-item h3 a:focus-visible {
    outline: 2px solid #FF5A1F;
    outline-offset: 3px;
}

.coreserv-item:hover h3 a {
    color: #FF5A1F;
}

.coreserv-item p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6B6F76;
    margin: 0;
    transition: color 0.25s ease;
}

.coreserv-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #14161A;
    text-decoration: none;
    border-bottom: 1px solid #14161A;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.coreserv-cta:hover {
    color: #FF5A1F;
    border-color: #FF5A1F;
    gap: 12px;
}

.coreserv-cta:focus-visible {
    outline: 2px solid #FF5A1F;
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .coreserv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .coreserv-area {
        padding: 64px 20px;
    }
    .coreserv-grid {
        grid-template-columns: 1fr;
    }
    .coreserv-item {
        padding: 32px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coreserv-item,
    .coreserv-item h3 a,
    .coreserv-item p,
    .coreserv-cta {
        transition: none;
    }
}
/* Who For / Why Choose / Case Studies / Pricing / CTA Banner */
.vyb-sec { padding: 70px 0 50px; }
.vyb-sec__pill {
    display: inline-flex; padding: 6px 16px; border: 1px solid var(--tp);
    border-radius: 30px; margin-bottom: 14px; color: var(--tp);
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.vyb-sec__title { font-size: 32px; font-weight: 900; text-transform: uppercase; color: #fff; text-align: center; margin-bottom: 8px; line-height: 1.15; }
.vyb-sec__sub { text-align: center; color: rgba(255,255,255,.55); font-size: 15px; max-width: 560px; margin: 0 auto 44px; }

.vyb-whofor__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vyb-whofor__card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 26px; display: flex; gap: 14px; }
.vyb-whofor__icon { width: 34px; height: 34px; border-radius: 50%; background: var(--tp); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.vyb-whofor__card h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.vyb-whofor__card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin: 0; }

.vyb-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vyb-why__card { text-align: center; padding: 30px 20px; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.vyb-why__card .ic { font-size: 30px; color: var(--tp); margin-bottom: 14px; }
.vyb-why__card h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.vyb-why__card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin: 0; }

.vyb-case__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.vyb-case__card { background: rgba(255,255,255,.04); border-left: 4px solid var(--tp); border-radius: 12px; padding: 26px; }
.vyb-case__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tp); border: 1px solid var(--tp); border-radius: 4px; padding: 3px 10px; margin-bottom: 14px; }
.vyb-case__problem { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 18px; }
.vyb-case__stat { font-size: 34px; font-weight: 900; color: #fff; }
.vyb-case__label { color: rgba(255,255,255,.5); font-size: 13px; }

.vyb-pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.vyb-price__card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 32px 26px; position: relative; }
.vyb-price__card.popular { border-color: var(--tp); box-shadow: 0 0 0 1px var(--tp); }
.vyb-price__badge { position: absolute; top: -12px; right: 20px; background: var(--tp); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }
.vyb-price__name { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.vyb-price__amt { color: var(--tp); font-size: 34px; font-weight: 900; }
.vyb-price__amt span { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 500; }
.vyb-price__features { list-style: none; padding: 0; margin: 22px 0; }
.vyb-price__features li { color: rgba(255,255,255,.75); font-size: 14px; padding: 6px 0; }
.vyb-price__features li::before { content: '✓'; color: var(--tp); font-weight: 700; margin-right: 8px; }

.vyb-cta-banner { padding: 50px 0; text-align: center; background: rgba(255,255,255,.03); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.vyb-cta-banner p { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 20px; }

.vyb-inc__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.vyb-inc-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 26px; }
.vyb-inc-card__tag { display:inline-block; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:4px 12px; border-radius:20px; margin-bottom:14px; }
.vyb-inc-card__title { color:#fff; font-size:18px; font-weight:700; margin-bottom:6px; }
.vyb-inc-card__meta { color: var(--tp); font-size:13px; font-weight:600; margin-bottom:10px; }
.vyb-inc-card__desc { color: rgba(255,255,255,.6); font-size:14px; line-height:1.6; margin-bottom:18px; }

.video-lazy-cs { cursor: pointer; }

.video-lazy-cs-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.video-lazy-cs-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.video-lazy-cs-play:hover {
    background: var(--tp);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .vyb-whofor__grid, .vyb-why__grid { grid-template-columns: 1fr; }
    .vyb-sec__title { font-size: 22px; }
}
