:root {
    --primary: #0a1f44;
    --secondary: #1EA7FF;
    --white: #fff;
    --black: #000;
    --text: #333;
    --text-muted: #d2d2d2;
    --hero-bg: #7d94b7;
    --hero-bg-light: #90a4c2;
    --accent-yellow: #EDFF21;
    --card-dark: #1e2d4a;
    --pill-bg: rgba(255, 255, 255, 0.18);
    --pill-border: rgba(255, 255, 255, 0.35);
}

body {
    caret-color: transparent;

}

.text-light {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted) !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
button,
input,
textarea {
    font-family: var(--theme-font-family, inherit);
}

h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 400;
}

h2 {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 400;
}

h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;
}

h4 {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 400;
}

h5 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}

h6 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

p {
    margin-bottom: 0;
}

.hero-main {
    background:
        linear-gradient(to right,
            var(--hero-bg) 0%,
            var(--hero-bg) calc(50% - 120px),
            var(--hero-bg-light) calc(50% - 120px),
            var(--hero-bg-light) calc(50% + 120px),
            var(--hero-bg) calc(50% + 120px),
            var(--hero-bg) 100%);
    color: var(--white);
    min-height: calc(100vh - 95px);
    display: flex;
    align-items: center;
    flex-direction: row;

}

button:focus {

    outline: none;
}

.section-py {
    padding: 100px 0px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-10 {
    border-radius: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-10 {
    gap: 10px;
}

.hero-our-services {
    background-color: var(--white);
    background-image: url('../images/aplinus-service-shape.png');
    background-size: contain;
    background-position-y: bottom;
    background-repeat: no-repeat;

}

.hero-our-services {
    color: var(--primary);
    height: 220px;

}

.col-right {
    padding-left: 80px;
}

.hero-left-wrap img {
    height: 220px;
    width: 180px;
    object-fit: cover;
}

.beauty-icon-wrap {
    background-color: var(--accent-yellow);
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}





/* Reusable Arrow Button */
.btn-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    padding: 14px 22px;
    padding-right: 56px;
    border-radius: 999px;
    text-decoration: none !important;
    overflow: visible;
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
}

.btn-arrow.light-btn {
    background: var(--white);
    color: var(--primary);
}

.btn-arrow.light-btn svg {
    color: var(--primary);
}

.btn-arrow.light-btn:hover svg {
    background: var(--white);
}

.btn-arrow.light-btn:hover,
.btn-arrow.light-btn:focus {
    color: var(--primary);
    text-decoration: none !important;
}

.btn-arrow:hover,
.btn-arrow:focus {
    text-decoration: none !important;
    color: var(--white);
    cursor: pointer;
}

.btn-arrow:hover {
    padding-right: 22px;
}

.btn-arrow svg {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    color: var(--white);
    transform: translateY(-50%);
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}




.btn-arrow:hover {
    transform: translateX(-8px);
}

.btn-arrow:hover svg {
    background: var(--primary);
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 50%;
    transform: translate(56px, -50%) scale(1.2);
}

/* Smooth Rendering */
.btn-arrow,
.btn-arrow * {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}



.svc-col {
    opacity: 0;

    transition: opacity 0.65s cubic-bezier(.22, 1, .36, 1), transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.svc-col.visible {
    opacity: 1;
}

.svc-col:nth-child(2) {
    transition-delay: 0.12s;
}

.svc-col:nth-child(3) {
    transition-delay: 0.24s;
}

.svc-card {
    background: var(--hero-bg-light);
    border-radius: 20px;
    height: 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 30px;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card:hover {
    transform: translateY(-6px);
    
}
.svc-col:hover a {
text-decoration: none;
}

.svc-icon-wrap {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(.22, 1, .36, 1);
    z-index: 1;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--secondary);
    transform: rotate(8deg) scale(1.08);
}

.svc-icon-wrap i {
    font-size: 24px;
    color: var(--white);
    transition: color 0.3s;
}

.svc-card:hover .svc-icon-wrap i {
    color: var(--primary);
}

.svc-num {
    position: absolute;
    top: 30px;
    right: 28px;

    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    z-index: 1;
    transition: color 0.4s;
}

.svc-card:hover .svc-num {
    color: rgba(255, 255, 255, 0.25);
}

.svc-body {
    position: relative;
    z-index: 1;
}

.svc-title {
    color: var(--white);
    margin-bottom: 0;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.svc-card:hover .svc-title {
    transform: translateY(-8px);
}

.svc-desc {
    color: rgba(255, 255, 255, 0.75);
    margin: 10px 0 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(.22, 1, .36, 1), opacity 0.4s ease, margin 0.4s ease;
}

.svc-card:hover .svc-desc {
    max-height: 120px;
    opacity: 1;
}

.svc-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2s cubic-bezier(.22, 1, .36, 1);
}

.svc-card:hover .svc-line {
    transform: scaleX(1);
}

.svc-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: opacity 0.35s, transform 0.4s cubic-bezier(.22, 1, .36, 1);
    z-index: 2;
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.svc-arrow i {
    font-size: 15px;
    color: var(--primary);
}

.cta-row {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.cta-row.visible {
    opacity: 1;
}

.cta-left {
    background: var(--hero-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    height: 100%;
}

.cta-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(10, 31, 68, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-left-content {
    padding: 44px 40px;
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.cta-left-content h2 {
    color: var(--white);
}

.cta-left-content p {
    color: var(--white);
}

.cta-img {
         position: absolute;
    right: 0;
    bottom: 0;
    height: 320px;
    width: 45%;
    object-fit: cover;
    object-position: top center;
    animation: ctaImgIn 1s ease both 0.4s;
}

@keyframes ctaImgIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-right {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 40px 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1) 0.2s, transform 0.7s cubic-bezier(.22, 1, .36, 1) 0.2s;
}

.cta-row.visible .cta-right {
    opacity: 1;
    transform: translateX(0);
}

.cta-right::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(30, 167, 255, 0.07);
    top: -70px;
    right: -60px;
    pointer-events: none;
}

.cta-right h3 {
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-right p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-avatars {
    display: flex;
    align-items: center;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.cta-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid var(--card-dark);
    overflow: hidden;
    background: var(--hero-bg);
    margin-right: -14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cta-avatar:hover {
    transform: translateY(-4px);
    z-index: 5;
}

.cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-avatar-placeholder svg {
    width: 30px;
    opacity: 0.45;
}

.cta-avatar-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 22px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.3s cubic-bezier(.22, 1, .36, 1);
}

.cta-avatar-btn.vertical {
    transform: rotate(90deg);
    margin: 0;
    background-color: var(--primary);
}

.cta-avatar-btn {
    position: relative;
    overflow: hidden;
}

.cta-avatar-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    animation: slide-left 0.3s ease forwards;
}

.sg-arrow {
    animation: slide-left 0.3s ease forwards;

}

.cta-avatar-btn:hover svg,
.sg-arrow:hover svg {
    animation: slide-right 0.3s ease forwards;
}

/* Hover In */
@keyframes slide-right {
    0% {
        transform: translateX(0);
    }

    49% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Hover Out */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    49% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}


.portfolio-section {
    background: var(--hero-bg);
    position: relative;
    background-image: url('../images/overlay-left.png');
    background-size: 300px;
    background-position-y: center;
    background-position-x: left;
    background-repeat: no-repeat;

}

.port-left {
    position: sticky;
    top: 50px;
}

.port-title {
    color: var(--white);
}


.port-card-col {
    opacity: 0;

    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.port-card-col.visible {
    opacity: 1;
}

.port-card-col:nth-child(2) {
    transition-delay: 0.1s;
}

.port-card-col:nth-child(3) {
    transition-delay: 0.2s;
}

.port-card-col:nth-child(4) {
    transition-delay: 0.3s;
}

.port-card {
    background: var(--card-dark);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease;
}

.port-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.32);
}

.port-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
}

.port-client {
    display: flex;
    align-items: center;
    gap: 10px;
}

.port-client-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.port-client-icon svg {
    width: 15px;
    stroke: var(--white);
    fill: none;
}

.port-client-name {
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.port-client-sub {
    color: rgba(255, 255, 255, 0.38);
    margin: 3px 0 0;
    line-height: 1;
}

.port-tag {
    background: var(--accent-yellow);
    color: var(--primary);
    border-radius: 100px;
    padding: 5px 14px;

    white-space: nowrap;
    transition: background 0.25s, color 0.25s;
}

.port-card:hover .port-tag {
    background: var(--secondary);
    color: var(--white);
}

.port-img-wrap {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin: 0 16px;
    border-radius: 14px;
}

.port-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.port-card:hover .port-img-wrap img {
    transform: scale(1.07);
}

.port-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.65) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.port-card:hover .port-img-overlay {
    opacity: 1;
}

.port-img-arrow {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5) rotate(-45deg);
    transition: opacity 0.35s, transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.port-card:hover .port-img-arrow {
    width: 50px;
    height: 50px;
    transform: scale(1) rotate(0deg);
    cursor: pointer;
}

.port-img-arrow svg {
    width: 30px;
    stroke: var(--primary);
    fill: none;
}

.port-card-footer {
    padding: 16px 20px 20px;
}

.port-meta {
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.port-card-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.port-card-title {
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

.port-card-title a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.22);
    transition: color 0.25s, border-color 0.25s;
}

.port-card:hover .port-card-title a {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.port-goto {
    display: flex;
    overflow: hidden;
}


.faq-section {
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}


.faq-wrap {
    background: var(--hero-bg-light);
    border-radius: 28px;
    padding: 50px 44px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(10, 31, 68, 0.2);
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-title {
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.faq-contact-box {
    background: var(--card-dark);
    border-radius: 18px;
    padding: 26px 22px;
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-contact-box h5 {
    color: var(--white);
    margin-bottom: 8px;
}

.faq-contact-box p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-avatars {
    display: flex;
    align-items: center;
}

.faq-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--card-dark);
    overflow: hidden;
    background: var(--hero-bg);
    margin-right: -12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-avatar:hover {
    transform: translateY(-4px);
    z-index: 5;
}

.faq-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-avatar-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.faq-avatar-ph svg {
    width: 28px;
    opacity: 0.45;
}


.faq-item {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(.22, 1, .36, 1);
    opacity: 0;
    transform: translateX(30px);
}

.faq-item.visible {
    animation: faqSlideIn 0.6s cubic-bezier(.22, 1, .36, 1) forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.08s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.16s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.24s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.32s;
}

@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-item.open {
    background: var(--card-dark);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    border-color: rgba(30, 167, 255, 0.25);
}

.faq-item:not(.open):hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    cursor: pointer;
    text-align: left;
}

.faq-btn-text {
    color: var(--white);
    flex: 1;
    transition: color 0.25s;
}

.faq-item.open .faq-btn-text {
    color: var(--accent-yellow);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.45s cubic-bezier(.22, 1, .36, 1);
}

.faq-item.open .faq-icon {
    background: var(--secondary);
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 16px;
    stroke: var(--white);
    fill: none;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.22, 1, .36, 1), padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.open .faq-body {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-body p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    animation: faqBodyFade 0.4s ease both;
}

@keyframes faqBodyFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.open .faq-body p {
    animation: faqBodyFade 0.4s ease both 0.1s;
}




.blog-section {
    background: var(--white);
}



.blog-title {
    color: var(--primary);
}


.blog-card-col {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.blog-card-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-col:nth-child(2) {
    transition-delay: 0.12s;
}

.blog-card-col:nth-child(3) {
    transition-delay: 0.24s;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(10, 31, 68, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease, border-color 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 60px rgba(10, 31, 68, 0.12);
    border-color: var(--secondary);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.07);
}

.blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-img-overlay {
    opacity: 1;
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-yellow);
    color: var(--primary);
    border-radius: 100px;
    padding: 5px 14px;
    transition: background 0.25s, color 0.25s;
    z-index: 2;
}

.blog-card:hover .blog-cat {
    background: var(--secondary);
    color: var(--white);
}

.blog-read-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: opacity 0.35s, transform 0.4s cubic-bezier(.22, 1, .36, 1);
    z-index: 2;
    text-decoration: none;
}

.blog-card:hover .blog-read-btn {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.blog-read-btn svg {
    width: 16px;
    stroke: var(--primary);
    fill: none;
}

.blog-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #999;
    letter-spacing: 0.2px;
}

.blog-meta-item svg {
    width: 13px;
    stroke: #999;
    fill: none;
    flex-shrink: 0;
}

.blog-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}

.blog-card-title {
    color: var(--primary);
    transition: color 0.25s;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
}

.blog-card:hover .blog-card-title a {
    color: var(--secondary);
}

.blog-card-desc {
    color: var(--text);
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1.5px solid rgba(10, 31, 68, 0.07);
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hero-bg);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.blog-author-av svg {
    width: 26px;
    opacity: 0.5;
}

.blog-author-name {
    color: var(--primary);
}

.blog-author-role {
    color: #aaa;
    margin-top: 1px;
}

.blog-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 31, 68, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.3s cubic-bezier(.22, 1, .36, 1);
}

.blog-arrow svg,
.blog-read-btn svg,
.port-goto svg {
    animation: slide-left 0.3s ease forwards;
}

.blog-arrow:hover svg,
.blog-read-btn:hover svg,
.port-goto:hover svg {
    animation: slide-right 0.3s ease forwards;
}

.blog-card:hover .blog-arrow {
    background: var(--primary);
}

.blog-card:hover .blog-arrow svg {
    stroke: var(--white);
}

.blog-arrow svg {
    width: 15px;
    stroke: var(--primary);
    fill: none;
    transition: stroke 0.25s, transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.blog-bottom-col {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-bottom-col.visible {
    opacity: 1;
    transform: translateY(0);
}



.ind2-section.light-ind2 {
    background-color: var(--hero-bg);
}

.ind2-section {
    background: #282828;
    position: relative;
    overflow: hidden;
}

.ind2-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.12;
}

.ind2-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -120px;
    left: -100px;
    animation: ind2Drift 10s ease-in-out infinite;
}

.ind2-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-yellow);
    bottom: -80px;
    right: -60px;
    animation: ind2Drift 13s ease-in-out infinite reverse;
}

@keyframes ind2Drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -25px);
    }
}

.ind2-header {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ind2-header.visible {
    opacity: 1;
    transform: translateY(0);
}


.accent-text {
    color: var(--accent-yellow);
}

.ind2-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.ind2-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 22px 8px 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.4s ease,
        opacity 0.5s ease;
}

.ind2-pill.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.ind2-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: inherit;
}

.ind2-pill:hover::before {
    opacity: 1;
}

.ind2-pill:hover {
    border-color: var(--secondary);
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 18px 40px rgba(30, 167, 255, 0.25);
    text-decoration: none;
}

.ind2-pill-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2.5px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    transition: border-color 0.35s, transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.ind2-pill:hover .ind2-pill-img {
    border-color: var(--accent-yellow);
    transform: scale(1.08) rotate(-4deg);
}

.ind2-pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.ind2-pill:hover .ind2-pill-img img {
    transform: scale(1.12);
}

.ind2-pill-text {
    color: var(--white);
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    white-space: nowrap;
}

.ind2-pill-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: 4px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.35s cubic-bezier(.22, 1, .36, 1), background 0.3s;
}

.ind2-pill:hover .ind2-pill-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--accent-yellow);
}

.ind2-pill-arrow svg {
    width: 12px;
    stroke: var(--primary);
    fill: none;
}

.ind2-pill-featured .ind2-pill-img {
    border-color: var(--accent-yellow);
}

.ind2-pill-featured {
    background: rgba(237, 255, 33, 0.1);
    border-color: rgba(237, 255, 33, 0.3);
}

.ind2-pill-featured .ind2-pill-text {
    color: var(--accent-yellow);
}

.ind2-pill-featured::before {
    background: linear-gradient(135deg, rgba(237, 255, 33, 0.25) 0%, var(--primary) 100%);
}

.ind2-pill-featured:hover .ind2-pill-text {
    color: var(--white);
}


.cta-wrap {
    background-image: url('../images/cta-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-color: var(--hero-bg);
   
}

.cta-wrap .main-cta-right .main-cta-img-wrap img {
    width: 100%;
    height: 380px;
    
}



/* If badge contains SVG */
.main-cta-badge svg {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-cta-badge:hover svg {
    transform: translateY(-5px) rotate(-10deg);
}

.bottom-radius {
    border-radius: 0 0 70px 70px;
}

.top-radius {
    border-radius: 70px 70px 0 0;
}

.globe-bg {
    background-image: url('../images/globe-1.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: 70%;
}

/* about us css */

.about-page-hero {
    background-color: var(--hero-bg);
    color: var(--white);
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: end;
}

.svc-grid-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}


.sg-card {
    background-color: var(--card-dark);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 36px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease, background 0.4s, border-color 0.4s;
}

.sg-card:hover {
    background: var(--primary);
    border-color: rgba(30, 167, 255, 0.3);
}

.sg-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--secondary);
    filter: blur(60px);
    opacity: 0;
    top: -60px;
    right: -40px;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sg-card:hover .sg-card-glow {
    opacity: 0.12;
}

.sg-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: background 0.4s, transform 0.45s cubic-bezier(.22, 1, .36, 1);
}

.sg-card:hover .sg-icon {
    background: var(--secondary);
    transform: rotate(8deg) scale(1.1);
}
.sg-card:hover  a {
    text-decoration: none;
}
.sg-icon svg {
    width: 26px;
    stroke: var(--white);
    fill: none;
    transition: stroke 0.3s;
}

.sg-card:hover .sg-icon svg {
    stroke: var(--primary);
}

.sg-num {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: -1px;
    line-height: 1;
    transition: color 0.35s;
    z-index: 1;
}

.sg-card:hover .sg-num {
    color: rgba(255, 255, 255, 0.07);
}

.sg-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.sg-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: color 0.35s;
}

.sg-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.sg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.sg-tag {
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.55);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.sg-card:hover .sg-tag {
    border-color: var(--secondary);
    color: var(--secondary);
}

.sg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-footer-label {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s;
}

.sg-card:hover .sg-footer-label {
    color: rgba(255, 255, 255, 0.55);
}

.sg-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s, transform 0.4s cubic-bezier(.22, 1, .36, 1);
}

.sg-card:hover .sg-arrow {
    background: var(--secondary);
}

.sg-arrow svg {
    width: 15px;
    stroke: var(--white);
    fill: none;
    transition: stroke 0.3s, transform 0.35s;
}

.sg-card:hover .sg-arrow svg {
    stroke: var(--primary);
}

/* Featured journal card */
.sg-card-featured {
    background: var(--card-dark);
    border-color: rgba(237, 255, 33, 0.15);
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.sg-card-featured:hover {
    background: var(--primary);
    border-color: var(--accent-yellow);
}

.sg-featured-body {
    flex: 1;
}

.sg-featured-panel {
    width: 220px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    z-index: 1;
}

.sg-feat-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s, transform 0.3s;
}

.sg-feat-step:hover {
    color: var(--white);
    transform: translateX(4px);
}

.sg-feat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-yellow);
    flex-shrink: 0;
}

.sg-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-yellow);
    color: var(--primary);
    border-radius: 100px;
    padding: 4px 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.sg-featured-badge svg {
    width: 12px;
    stroke: var(--primary);
    fill: none;
}


.scta-section {
    position: relative;
    overflow: hidden;
}

.scta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(30, 167, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(237, 255, 33, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


.scta-inner {
    position: relative;
    z-index: 1;
}


.scta-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.scta-perk {
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.22, 1, .36, 1);
}


.scta-perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--hero-bg-light);
    border: 1px solid var(--hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.scta-perk:hover .scta-perk-icon {
    background: var(--primary);
    transform: rotate(8deg) scale(1.08);
}

.scta-perk-icon svg {
    width: 18px;
    stroke: var(--primary);
    fill: none;
    transition: stroke 0.3s;
}

.scta-perk:hover .scta-perk-icon svg {
    stroke: var(--secondary);
}

.scta-perk-text strong {
    display: block;
}


.scta-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--hero-bg-light);
    flex-wrap: wrap;
}

.scta-avatars {
    display: flex;
    align-items: center;
}

.scta-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: #7b7b7b;
    overflow: hidden;
    margin-right: -10px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.scta-av svg {
    width: 26px;
}

.scta-trust-text {
    line-height: 1.5;
}

.scta-trust-text strong {
    display: block;
}

/* ── FORM CARD ── */
.scta-form-card {
    background: #90a4c233;
    backdrop-filter: blur(20px);
    border: 1px solid var(--hero-bg);
    border-radius: 28px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}

.scta-form-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(30, 167, 255, 0.06);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.scta-form-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(237, 255, 33, 0.04);
    bottom: -60px;
    left: -50px;
    pointer-events: none;
}

.scta-form-head {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}



/* wpforms overrides */
.scta-form-card .wpforms-form,
.scta-form-card form {
    position: relative;
    z-index: 1;
}

.scta-form-card .wpforms-field-container,
.scta-form-card .wpforms-submit-container {
    padding: 0 !important;
}

.scta-form-card .wpforms-field {
    padding: 0 0 18px 0 !important;
    margin: 0 !important;
}

.scta-form-card .wpforms-field-label,
.scta-form-card label {
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.scta-form-card input[type="text"],
.scta-form-card input[type="email"],
.scta-form-card input[type="tel"],
.scta-form-card input[type="url"],
.scta-form-card input[type="number"],
.scta-form-card select,
.scta-form-card textarea {
    width: 100% !important;
    background: var(--white) !important;
    border: 1px solid #0000001f !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    outline: none !important;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
}

.scta-form-card input[type="text"]:focus,
.scta-form-card input[type="email"]:focus,
.scta-form-card input[type="tel"]:focus,
.scta-form-card input[type="url"]:focus,
.scta-form-card input[type="number"]:focus,
.scta-form-card select:focus,
.scta-form-card textarea:focus {
    border-color: var(--secondary) !important;
    background: rgba(30, 167, 255, 0.08) !important;
}

.scta-form-card input::placeholder,
.scta-form-card textarea::placeholder {
    color: var(--text) !important;
}

.scta-form-card select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 44px !important;
    cursor: pointer !important;
}

.scta-form-card select option {
    background: var(--card-dark) !important;
    color: var(--white) !important;
}

.scta-form-card textarea {
    resize: vertical !important;
    min-height: 110px !important;
}

.scta-form-card .wpforms-field-row {
    display: flex !important;
    gap: 16px !important;
}

.scta-form-card .wpforms-field-row .wpforms-field {
    flex: 1 !important;
}

/* radio / checkbox */
.scta-form-card input[type="radio"],
.scta-form-card input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--secondary) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.scta-form-card .wpforms-field-radio li,
.scta-form-card .wpforms-field-checkbox li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 8px !important;
}

/* submit button */
.scta-form-card button[type="submit"],
.scta-form-card input[type="submit"],
.scta-form-card .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 15px 32px !important;
    cursor: pointer !important;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 6px !important;
}

.scta-form-card button[type="submit"]:hover,
.scta-form-card input[type="submit"]:hover,
.scta-form-card .wpforms-submit:hover {
    /* background: var(--primary) !important; */
    transform: translateY(-2px) !important;
}

/* error / validation */
.scta-form-card .wpforms-error {
    color: #ff6b6b !important;
    margin-top: 5px !important;
    display: block !important;
}

.scta-form-card .wpforms-field input.wpforms-error,
.scta-form-card .wpforms-field select.wpforms-error,
.scta-form-card .wpforms-field textarea.wpforms-error {
    border-color: #ff6b6b !important;
}

.scta-form-confirm {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.scta-form-confirm svg {
    width: 18px;
    stroke: green;
    fill: none;
    flex-shrink: 0;
}

.glb-cta {
    background-color: var(--primary);

}



.ucta-right {
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1) 0.15s, transform 0.7s cubic-bezier(.22, 1, .36, 1) 0.15s;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    flex-shrink: 0;
}


.ucta-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ucta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.25s, gap 0.3s;
}

.ucta-contact-item:hover {
    color: var(--accent-yellow);
    gap: 14px;
}

.ucta-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.ucta-contact-item:hover .ucta-contact-icon {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: rotate(8deg) scale(1.08);
}

.ucta-contact-icon svg {
    width: 15px;
    stroke: rgba(255, 255, 255, 0.5);
    fill: none;
    transition: stroke 0.3s;
}

.ucta-contact-item:hover .ucta-contact-icon svg {
    stroke: var(--primary);
}




.process-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.process-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.process-card {
    padding: 10px 0 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: default;
}

.process-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.process-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(10, 31, 68, 0.05);
    border: 1.5px solid rgba(10, 31, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s, border-color 0.4s, transform 0.45s cubic-bezier(.22, 1, .36, 1);
}

.process-step-col:hover .process-icon-wrap {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(8deg) scale(1.08);
}

.process-icon-wrap svg {
    width: 26px;
    stroke: var(--primary);
    fill: none;
    transition: stroke 0.35s;
}

.process-step-col:hover .process-icon-wrap svg {
    stroke: var(--white);
}

.process-step-num {
    color: var(--text);
    letter-spacing: -2px;
    line-height: 1;
    user-select: none;
    transition: color 0.35s;
}

.process-step-col:hover .process-step-num {
    color: var(--text);
}

.process-connector {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, rgba(10, 31, 68, 0.603), transparent);
    border-radius: 2px;
    margin-left: 8px;
    align-self: center;
}

.process-card h5 {
    color: var(--primary);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.process-step-col:hover .process-card h5 {
    color: var(--secondary);
}


.process-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(10, 31, 68, 0.1);
    align-self: flex-start;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.process-step-col:hover .process-tag {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(30, 167, 255, 0.05);
}

.process-tag svg {
    width: 12px;
    stroke: currentColor;
    fill: none;
}

.process-bottom-strip {
    background: var(--primary);
    border-radius: 20px;
    padding: 28px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transition: opacity 0.65s ease 0.3s, transform 0.65s ease 0.3s;
}

.process-bottom-strip p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.process-bottom-strip p strong {
    color: var(--white);
}


.testimonial-section {
    background: linear-gradient(135deg,
            var(--hero-bg),
            var(--hero-bg-light));
    overflow: hidden;
    position: relative;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}


.testimonial-wrap {
    position: relative;
}

.testimonial-card {
    height: 100%;
    background: var(--card-dark);
    border-radius: 24px;
    padding: 30px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .08),
            transparent);
    opacity: 0;
    transition: .4s;
}



.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-top span {
    color: var(--text-muted);
}

.rating {
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

.testimonial-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}



.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    transition: .3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent-yellow);
    color: var(--primary);
}

.testimonialSwiper {
    overflow: visible;
}

.services-banner-img-wrap {   
    
    margin: auto;
    border-radius: 20px;
}

.services-banner-img-wrap img {
    height: 175px;
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}


/* ---------------- services details css start here ------------------ */
.hero-service {
    background: linear-gradient(180deg, var(--hero-bg-light) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: calc(100vh - 95px);
    display: flex;
    align-items: center;
}

.hero-service::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(237, 255, 33, .06);
    bottom: -80px;
    left: -60px;
}

.hero-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 28px;
}

.hero-pill {
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 50px;
    padding: 4px 12px;
    color: var(--white);
    backdrop-filter: blur(4px);
    font-size: 14px;
}



.service-overview-wrap {
    border: 1.5px solid rgba(10, 31, 68, 0.08);
    border-radius: 20px;
    gap: 15px;
    padding: 15px;
}

.service-overview-wrap:not(:last-child) {
    margin-bottom: 20px;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}


.how-we-work {
    background-color: var(--hero-bg);
}

.how-we-work-card {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 36px 30px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.how-we-work-card:hover {
    box-shadow: 0 20px 50px rgba(10, 31, 68, .18);
}

.how-we-work-card::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(30, 167, 255, .06);
    top: -40px;
    right: -40px;
}

.three-child-mb:nth-child(-n+3) {
    margin-bottom: 30px;
}

.process-number {
    color: rgba(237, 255, 33, .25);
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 22px;
}

.process-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30, 167, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 20px;
}

.process-tag {
    display: inline-block;
    background: rgba(30, 167, 255, .15);
    border-radius: 50px;
    padding: 4px 14px;
    color: var(--secondary);
    margin-top: 20px;
}

/* ── PLATFORM FEATURES ──────────────────── */
.platform-wrap {
    background: var(--primary);
    border-radius: 24px;
    padding: 56px 48px;
    color: var(--white);
}

.platform-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.platform-item:last-child {
    border-bottom: none;
}

.platform-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 167, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ── CASE STUDIES ───────────────────────── */
.case-card {
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid var(--card-dark);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 31, 68, .22);
}

.case-card-img {
    width: 100%;
    text-align: center;
    padding: 28px 0;
    background-color: var(--white);

}

.case-card-img img {
    padding: 6px;
    border: 3px solid var(--secondary);
    height: 240px;
    object-fit: cover;
    border-radius: 100%;
    width: 240px;
}

.case-card-img-icon {
    width: 100%;
    ;
    height: 100%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.case-card-body {
    padding: 28px 28px 32px;
}

.case-tag {
    display: inline-block;
    background: rgba(30, 167, 255, .15);
    border-radius: 50px;
    padding: 4px 14px;
    color: var(--secondary);
    margin-bottom: 14px;
}

.case-card-body p {
    color: var(--text-muted);
}

.case-card-meta {
    display: flex;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.case-meta-item {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-meta-item i {
    color: var(--secondary);
}

/* ── TECH PILLS ─────────────────────────── */


.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f5ff;
    border: 1px solid #dde8ff;
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--primary);
    font-weight: 500;
}

.tech-pill i {
    color: var(--secondary);
}


.divider-line {
    border-top: 1px solid #eaeff7;
}

.bg-card-dark {
    background: var(--card-dark);
}

/* ── WHAT'S INCLUDED TABLE ──────────────── */
.included-table .row-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eaeff7;
    color: var(--text);
}

.included-table .row-item:last-child {
    border-bottom: none;
}

.included-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e9f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

/* ── STICKY sidebar CTA ─────────────────── */
.sidebar-cta-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 34px 28px;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.sidebar-cta-card ul {
    padding: 0;
    list-style: none;
}

.sidebar-cta-card ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-cta-card ul li:last-child {
    border-bottom: none;
}

.sidebar-cta-card ul li i {
    color: var(--accent-yellow);
    margin-top: 3px;
    flex-shrink: 0;
}








/* ================================================
   SITE HEADER
   ================================================ */



.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(4px);

    transition: background .4s ease,
        box-shadow .4s ease,
        transform .35s ease;
   
}

.site-header.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 24px rgba(10, 31, 68, .18);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.sh-nav {
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
}


.sh-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sh-logo img,
.sh-logo .custom-logo {
    width: 185px;
    transition: filter .3s;
}

.sh-logo {
    border-radius: 10px;
    padding: 5px 10px;
}

.site-header.scrolled .sh-logo {
    background: white;

}

.sh-logo .logo-text {
    color: #fff;
    font-weight: 700;
}

/* ---- Desktop menu ---- */
.sh-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
    flex: 1;
    justify-content: center;
}

.sh-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .88);
    padding: 20px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .2s, background .2s;
    cursor: pointer;
    border: none;
    background: none;
}

.sh-link:hover,
.sh-link.active,
.has-mega.open>.sh-link,
.has-mega:hover>.sh-link {
    color: #ffffff9c;
}


.sh-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sh-chevron svg {
    width: 25px;
    height: 25px;
    transition: transform 0.35s ease;
    transform-origin: center;
}

.has-mega.open .sh-chevron svg,
.has-mega:hover .sh-chevron svg {
    transform: rotate(180deg);
}


.sh-right {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
    width: 185px;
}



.mega-drop {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--secondary);
    box-shadow: 0 16px 48px rgba(10, 31, 68, .13);
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(-6px); */
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    pointer-events: none;
    z-index: 999;
}

.has-mega:hover .mega-drop,
.has-mega.open .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-wrap {
    display: flex;
    min-height: 340px;
    padding: 1.75rem 0;
}

.mega-left {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 1rem;
}

.mega-cat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: .65rem .75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s;
}

.mega-cat:hover,
.mega-cat.active {
    background: var(--hero-bg-light);
    background: rgba(10, 31, 68, .06);
}

.mega-cat.active {
    background: rgba(30, 167, 255, .08);
}

.mega-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(10, 31, 68, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s;
}

.mega-cat.active .mega-cat-icon {
    background: var(--secondary);
}

.mega-cat-icon svg {
    width: 28px;
    height: 28px;
}

.mega-cat.active .mega-cat-icon .ti {
    color: #fff;
}

.mega-cat-title {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.mega-cat-desc {
    display: block;
    color: var(--text-muted);
    line-height: 1.35;
    margin-top: 2px;
}

.mega-cta {
    margin-top: auto;
    background: var(--primary);
    border-radius: 10px;
    padding: 1rem 1rem 1rem;
    margin-top: .75rem;
}

.mega-cta-title {
    color: #fff;
    font-weight: 600;
    margin: 0 0 3px;
}

.mega-cta-sub {
    color: rgba(255, 255, 255, .65);
    margin: 0 0 .85rem;
}

.mega-divider {
    width: 1px;
    background: rgba(10, 31, 68, .08);
    margin: 0 1.5rem;
    flex-shrink: 0;
}

.mega-right {
    flex: 1;
    min-width: 0;
}

.mega-panel {
    display: none;
}
img.mega-panel-image {
    border-radius: 20px;
    margin-top: 24px;
    border: 2px solid #bfbfbf29;
}

.mega-panel.active {
    display: block;
}

.mega-panel-title {
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px;
}

.mega-panel-sub {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

/* Cards grid */
.mega-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .65rem;
    margin-bottom: 1rem;
}

.mega-card {
    display: block;
    padding: .85rem 1rem;
    background: #f7f9fc;
    border: 1px solid rgba(10, 31, 68, .08);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color .18s, background .18s;
}

.mega-card:hover {
    border-color: var(--secondary);
    background: rgba(30, 167, 255, .04);
}

.mega-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.mega-card-name {
    font-weight: 600;
    color: var(--primary);
}

.mega-badge {
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    background: var(--secondary);
    color: #fff;
    flex-shrink: 0;
}

.mega-card-desc {
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: gap .18s;
    font-size: 24px;
    margin-bottom: 4px;
}

.mega-view-all:hover {
    gap: 9px;
    text-decoration: none;
    
}



/* ================================================
   MOBILE TOGGLER
   ================================================ */
.sh-toggler {
    border: 1.5px solid #ffffff4d;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
  
   
}

.sh-toggler:hover {
    background: rgba(255, 255, 255, .18);
}

.sh-toggler span {
  
    background-color: #ffffff4d;
    width: 20px;
    height: 2px;
}


.sh-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: #fff;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform .32s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sh-drawer.open {
    transform: translateX(0);
}

.sh-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 68, .45);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.sh-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sh-drawer-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 1.5rem;
}

.sh-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(10, 31, 68, .08);
}

.sh-drawer-head .sh-logo img {
    filter: none;
}

.sh-drawer-close {
    background: none;   
    cursor: pointer;    
}

.sh-drawer-close svg {
    height: 35px;
    width: 35px;
    
}

.sh-drawer-menu {
    list-style: none;
    margin: 0;
    padding: .5rem 0;
    flex: 1;
}

.sh-drawer-row {
    display: flex;
    align-items: center;
}

.sh-drawer-link {
    display: block;
    flex: 1;
    padding: .7rem 1.25rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.sh-drawer-link:hover {
    color: var(--secondary);
}

.sh-drawer-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: .5rem 1rem;
}

.sh-drawer-toggle .ti {
    font-size: 18px;
    transition: transform .25s;
}

.sh-drawer-item.open .sh-drawer-toggle .ti {
    transform: rotate(180deg);
}

.sh-drawer-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 .5rem 1rem;
    display: none;
    border-left: 2px solid var(--secondary);
    margin-left: 1.25rem;
}

.sh-drawer-item.open>.sh-drawer-sub {
    display: block;
}

.sh-drawer-sub a {
    display: block;
    padding: .45rem .75rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

.sh-drawer-sub a:hover {
    color: var(--secondary);
}

.sh-drawer-subsub {
    list-style: none;
    padding: 0 0 .25rem .75rem;
    margin: 0;
}

.sh-drawer-subsub a {
    font-weight: 400;
    color: var(--text-muted);
    padding: .3rem .5rem;
}

.sh-drawer-cta {
    padding: 1rem 1.25rem 0;
}

.menu-side-panel {
    width: 40px;
    height: 40px;
    border-radius: 5px 5px 5px 5px;
    background: #FFFFFF33;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.menu-side-panel .side_panel-toggle-inner .side_panel-toggle-bento-menu span {
    background: var(--accent-yellow);
    width: 5px;
    height: 5px;
}

.side_panel-toggle-bento-menu {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    width: 23px;
}

.side_panel-toggle,
.side_panel-toggle:focus,
.side_panel-toggle:focus-visible,
.side_panel-toggle:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.side_panel-toggle * {
    color: transparent !important;
    outline: none !important;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: var(--hero-bg-light);
    z-index: 9999;
    transition: right 0.35s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    background-image: url("../images/side-panel-bg-min_prev_ui.png");
    background-position: right bottom;
    background-size: 35%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-panel.active {
    right: 0;
}

.side-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 9998;
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-panel-close {
    position: absolute;
    top: 50px;
    right: 100px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 75px;
    line-height: 1;
    cursor: pointer;
}

.side-panel-menu li {
    width: auto;
}

.side-panel-menu li a {
    display: inline-block;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;

}

.side-panel-menu li a:hover {
    color: var(--accent-yellow);
    transform: translateX(6px);

}


.side-panel-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-panel-content li {
    margin-bottom: 15px;
}

.side-panel-content a {
    text-decoration: none;
    transition: .3s;
    color: var(--white);
}

.side-panel-content a:hover {
    text-decoration: underline;
}

.side_panel-toggle {
    cursor: pointer;
}

.contact-info-block {
    color: #fff;
}

.contact-section {
    margin-bottom: 1.6rem;
}

.contact-label {
    text-transform: uppercase;
    margin-bottom: 6px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.case-study-main-wrap {
    background-color: var(--hero-bg);
}

.case-study-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ── Content sections ── */
.cs-content {
    background: #fff;
}



.cs-body h2 {
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

/* challenge / solution cards */
.cs-split-card {
    background: #f4f6fa;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.cs-split-card h3 {
    color: var(--primary);
    margin-bottom: 14px;
}



.cs-split-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cs-split-card .icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--accent-yellow);
}

/* Process steps */
.process-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eef0f4;
}

.process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;

}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step-body h5 {
    color: var(--primary);
    margin-bottom: 8px;
}



/* Sidebar sticky */
.cs-sidebar {
    position: sticky;
    top: 60px;
}

.sidebar-card {
    background: var(--primary);
    border-radius: 18px;
    padding: 30px;
    color: var(--white);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-row .label {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-row .val {
    color: var(--white);
    text-align: right;
    max-width: 55%;
}

.Technologies-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.Technologies-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 999px;
    padding: 0px 12px;
    font-size: 14px;

}

.sidebar-cta {
    background: var(--accent-yellow);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--primary);
    margin-bottom: 8px;
}


/* ── HERO ── */
.blog-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    background-color: var(--hero-bg);
    background-size: cover;
    background-position: center;
}

.blog-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 31, 68, 0.15) 0%,
            rgba(10, 31, 68, 0.70) 55%,
            rgba(10, 31, 68, 0.92) 100%);
}

.blog-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0 52px;
}

.blog-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-hero__breadcrumb a,
.blog-hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color .2s;
}

.blog-hero__breadcrumb a:hover {
    color: var(--white);
}

.blog-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
}

.blog-hero__breadcrumb .current {
    color: var(--accent-yellow);
}

.blog-hero__cat {
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    color: var(--white);
    border-radius: 100px;
    padding: 4px 16px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .2s;
    display: inline-block;
}

.blog-hero__cat:hover {
    background: rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.blog-hero__title {
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.blog-hero__author-name {
    color: var(--white);
    margin: 0;
}

.blog-hero__author-role {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.blog-hero__divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
}

.blog-hero__info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
}

.blog-hero__info svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.blog-hero__av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: var(--card-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-hero__av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CONTENT ── */
.blog-content {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 48px 56px;
    min-width: 0;
}

.blog-content h2,
.blog-content p {
    color: var(--text);
    margin-bottom: 15px;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
    color: var(--text);
    line-height: 1.8;
}

.blog-content li {
    margin-bottom: .4em;
}

.blog-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: #f0f7ff;
    border-radius: 0 8px 8px 0;
    color: var(--primary);
}

.blog-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.5em 0;
}

.blog-content pre {
    background: var(--primary);
    color: #e8edf5;
    border-radius: 10px;
    padding: 20px 24px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.blog-content code {
    background: #eef3fb;
    color: var(--primary);
    border-radius: 4px;
    padding: 2px 6px;
}

.blog-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #eaedf3;
}

.blog-tag {
    background: #eef3fb;
    color: var(--primary);
    border-radius: 100px;
    padding: 5px 16px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.blog-tag:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ── SIDEBAR ── */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* TOC */
.toc-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px 24px 20px;
    border-left: 4px solid var(--secondary);
    margin-bottom: 24px;
}

.toc-card__title {
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-card__title svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
    fill: none;
    flex-shrink: 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-list a {
    display: block;
    padding: 7px 10px;
    color: var(--text);
    text-decoration: none;
    border-radius: 7px;
    transition: background .18s, color .18s;
    line-height: 1.4;
}

.toc-list a:hover,
.toc-list a.active {
    background: #eef5ff;
    color: var(--secondary);
}

.toc-list a.active {
    font-weight: 600;
}

/* Author card */
.author-card {
    background: var(--primary);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.author-card__av {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.25);
    background: var(--card-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.author-card__av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card__name {
    color: var(--white);
    margin: 0;
}

.author-card__role {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 8px;
}

.author-card__bio {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin: 0 0 12px;
}

.author-card__btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    transition: opacity .2s;
}

.author-card__btn:hover {
    opacity: .85;
    color: var(--white);
}

/* Share card */
.share-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
}

.share-card__title {
    color: var(--primary);
    margin: 0 0 14px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #e0e6f0;
    color: var(--primary);
    background: #f7f9fd;
    transition: background .2s, color .2s;
    flex: 1;
    justify-content: center;
}

.share-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}


.archive-main {
    background-color: var(--hero-bg-light);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.archive-main::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.archive-main::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.archive-main-content {
    position: relative;
    z-index: 2;
}



.archive-main-title {
    margin-bottom: 15px;
}

.archive-main-desc {
    max-width: 700px;
    margin: 0 auto;
}

.archive-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.archive-breadcrumb a {
    text-decoration: none;
}

.archive-breadcrumb span {
    color: var(--white);
}

.site-footer {
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-cta {
    padding: 72px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-cta-heading {
    color: var(--primary);
    max-width: 540px;
}

.footer-cta-desc {
    color: var(--text);
    max-width: 340px;
    opacity: 0.75;
    text-align: right;
}

/* ---------- Nav Grid ---------- */
.footer-nav-section {
    padding: 56px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}



.footer-col-heading {
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* ---------- Bottom Bar ---------- */
.footer-bottom {
    padding: 24px 0;
    background-color: var(--white);
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-copyright {
    color: var(--text);
    opacity: 0.55;
}








/* Responsive */

@media (min-width:1200px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width:1100px) {
    .col-right {
        padding-left: 15px;
    }
}

@media (min-width:991px) {
.site-header {
     backdrop-filter: blur(4px);
} }

@media (max-width: 991.98px) {

    .sh-right {
        width: auto !important;
    }

    .side_panel-toggle-bento-menu {
        width: 20px;
        gap: 4px;
    }

    .menu-side-panel {
        width: 34px;
        height: 34px;
    }

    .menu-side-panel .side_panel-toggle-inner .side_panel-toggle-bento-menu span {
        width: 4px;
        height: 4px;
    }

    .archive-main {
        min-height: 280px;
    }

    .archive-main-desc {
        max-width: 100%;
    }

  

    .footer-cta {
        padding: 56px 0;
    }

    .footer-cta-desc {
        text-align: left;
    }

    .testimonial-section {
        border-radius: 30px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .process-connector {
        display: none;
    }

    .three-child-mb {
        margin-bottom: 20px;
    }

    .scta-form-card {
        padding: 36px 28px;
    }


    .sg-card-featured {
        flex-direction: column;
    }

    .sg-featured-panel {
        width: 100%;
    }

    .faq-wrap {
        padding: 36px 28px;
    }

    .faq-left {
        position: relative;
        top: auto;
        margin-bottom: 36px;
    }

    .cta-left-content {
        max-width: 60%;
        padding: 36px 30px;
    }

    .port-left {
        position: relative;
        top: auto;
        margin-bottom: 40px;
    }

    .port-title {
        letter-spacing: -1px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 22px;
    }

    h6 {
        font-size: 18px;
    }

    .section-py {
        padding: 80px 0px;
    }

    .top-radius {
        border-radius: 30px 30px 0 0;
    }

    .bottom-radius {
        border-radius: 0 0 30px 30px;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-hero {
        min-height: 400px;
    }

    .blog-content {
        padding: 32px 24px 40px;
    }

    .blog-hero__divider {
        display: none;
    }
      .sg-card.sg-card-featured .featured-card-inner {
        flex-direction: column;
    }
    .cta-avatar-btn.vertical {
       margin-bottom: 20px;
    }
}

@media (max-width: 767px) {

    .side-panel-menu h2 {
        font-size: 24px;
    }
    .side-panel-menu li {
    width: max-content;
}

  .services-banner-img-wrap {
        margin-top: 20px;
  }

    .hero-left-wrap {
        padding-top: 50px;
    }
  
    .side-panel-close {
        top: 10px;
        right: 20px;
        font-size: 36px;
    }
.col-right {
    margin-top: 20px;
}
    .col-left, .col-right {
    align-items: center;
    gap: 20px;
}
.mb-5 {
        margin-bottom: 20px !important;
}

    .svc-card {
        height: 300px;
        padding: 28px 24px;
    }

    .cta-left {
        min-height: 340px;
    }

    .cta-left-content {
        max-width: 100%;
        padding: 34px 26px 210px;
    }

    .cta-img {
        width: 65%;
        height: 55%;
        top: auto;
    }

    .cta-right {
        margin-top: 0;
    }

    .port-img-wrap {
        height: 180px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br,
    p br {
        display: none;
    }

    .btn-arrow {
        font-size: 14px;
        padding: 12px 18px;
        padding-right: 48px;
    }

    .btn-arrow svg {
        width: 20px;
        height: 20px;
        right: 10px;

    }

    .btn-arrow:hover svg {
        transform: translate(34px, -50%) scale(1.15);

    }

    .hero-our-services {
        height: 240px;
        width: 300px;
        margin: auto;
    }

    .faq-wrap {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .blog-img-wrap {
        height: 190px;
    }

    .blog-title {
        letter-spacing: -1px;
    }

    .ind2-grid {
        gap: 10px;
    }

    .ind2-pill {
        padding: 7px 16px 7px 7px;
    }

    .ind2-pill-img {
        width: 44px;
        height: 44px;
    }

    .ind2-bottom-inner {
        gap: 20px;
    }

    .sg-card {
        padding: 28px 22px 24px;
        border-radius: 20px;
    }

    .scta-form-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .scta-form-card .wpforms-field-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .scta-title {
        letter-spacing: -1px;
    }

    .ucta-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .platform-wrap {
        padding: 36px 24px;
    }

    .process-bottom-strip {
        padding: 22px 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .three-child-mb:not(:last-child) {
        margin-bottom: 20px;
    }

    .archive-main {
        min-height: 240px;
        padding-top: 90px !important;
        padding-bottom: 70px !important;
    }

    .archive-breadcrumb {
        flex-wrap: wrap;
    }
}


@media (max-width: 575.98px) {
 

    .footer-cta {
        padding: 44px 0;
    }

    .footer-cta-heading {
        max-width: 100%;
    }

    .footer-cta-desc {
        max-width: 100%;
        text-align: left;
    }

    .footer-bottom-inner {
        text-align: center;
    }

    .footer-logo img {
        height: 28px;
    }

    .blog-hero__inner {
        padding: 40px 0 36px;
    }

    .blog-content {
        padding: 24px 16px 32px;
    }
}

@media (max-width: 480px) {
    .cta-left-content {
        padding: 28px 20px 190px;
    }

    .cta-img {
        width: 72%;
    }

    .section-py {
        padding: 50px 0px;
    }

    .ind2-pill {
        padding: 6px 14px 6px 6px;
    }

    .ind2-pill-img {
        width: 38px;
        height: 38px;
    }

    .ind2-pill-text {
        white-space: normal;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
    }
}