/* ===================== SHARED (navbar, common layout) ===================== */
@font-face {
    font-family: 'Britanica';
    src: url('../font/Britanica/Britanica Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Britanica';
    src: url('../font/Britanica/Britanica Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Britanica';
    src: url('../font/Britanica/Britanica Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Britanica', 'Sora', sans-serif;
}

h2 {
    font-size: 40px;
    font-weight: 600 !important;
    padding-bottom: 25px;
}

p {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 15px;
    opacity: 80%;
}

a {
    text-decoration: none;
    color: #6C3FA8;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 16px;
}

/* ============================================================
           HEADER (shared with homepage)
           ============================================================ */
#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    padding: 20px 0;
    background: transparent;
    transition: padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}

#siteHeader.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #e7e2f0;
    box-shadow: 0 8px 30px rgba(20, 10, 40, .05);
}

.nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-wrap .logo img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

@media (min-width: 993px) {
    .nav-wrap {
        position: relative;
    }

    .nav-links {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: #171520;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #6C3FA8;
    transition: width .3s ease;
}

.nav-links a:hover {
    color: #171520;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-item-services {
    position: relative;
}

.services-mega {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(760px, 90vw);
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(20, 10, 40, .14);
    display: grid;
    grid-template-columns: 300px 1fr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 1001;
}

.nav-item-services:hover .services-mega,
.services-mega:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.services-mega-list {
    padding: 18px;
    border-right: 1px solid #efe9f7;
    max-height: 420px;
    overflow-y: auto;
}

.services-mega-item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease;
}

.services-mega-item:hover,
.services-mega-item.active {
    background: #f2eafa;
}

.services-mega-item .smi-title {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #171520;
}

.services-mega-item .smi-tagline {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.4;
    color: #6f6c7a;
}

.services-mega-panel {
    padding: 22px 26px;
    display: none;
}

.services-mega-panel.active {
    display: block;
}

.services-mega-panel-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #6C3FA8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.services-mega-panel-tagline {
    font-size: 13.5px;
    color: #6f6c7a;
    margin-bottom: 16px;
}

.services-mega-sublist {
    display: grid;
    gap: 4px;
}

.services-mega-sublist a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #171520;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}

.services-mega-sublist a:hover,
.services-mega-sublist a.active {
    background: #f8f6fc;
    color: #6C3FA8;
}

@media (max-width: 992px) {
    .services-mega {
        display: none;
    }
}

.nav-cta .btn-nav-cta {
    display: inline-flex;
    align-items: center;
    background: #6C3FA8;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 100px;
    border: none;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(108, 63, 168, .28);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.nav-cta .btn-nav-cta:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(108, 63, 168, .38);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    background: none;
    border: none;
    padding: 0;
    z-index: 1200;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background: #0b0a0d;
    transition: transform .3s ease, opacity .3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(.65, 0, .35, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #171520;
}

.mobile-menu .btn-nav-cta {
    display: inline-flex;
    background: #6C3FA8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 100px;
    border: none;
}

@media (max-width: 991px) {

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ============================================================
           PAGE HERO
           ============================================================ */
.page-hero {
    padding-top: 170px;
    padding-bottom: 50px;
    background: #f8f6fc;
    text-align: center;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6C3FA8;
    justify-content: center;
}

.page-hero .eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6C3FA8;
    display: inline-block;
}

.page-hero h1 {
    font-size: clamp(32px, 4.4vw, 54px);
    font-weight: 700;
    color: #171520;
    margin-top: 14px;
    letter-spacing: -0.02em;
}

.page-hero p {
    margin: 16px auto 0;
    max-width: 560px;
    color: #6f6c7a;
    font-size: 16px;
    line-height: 1.65;
    opacity: 1;
}

.page-hero .breadcrumb-line {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6f6c7a;
}

.page-hero .breadcrumb-line a {
    color: #6C3FA8;
    font-size: 14px;
    font-weight: 600;
}

.page-hero .breadcrumb-line span {
    margin: 0 6px;
    color: #b8b3c4;
}

/* ============================================================
           BOTTOM CTA (shared pattern with homepage)
           ============================================================ */
.bottom-cta {
    text-align: center;
    padding: 20px 0 110px;
    background: #f8f6fc;
}

.bottom-cta .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6C3FA8;
    justify-content: center;
    margin: 0 auto 18px;
}

.bottom-cta .eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6C3FA8;
    display: inline-block;
}

.bottom-cta h2 {
    font-size: clamp(32px, 4.6vw, 56px);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.06;
    padding-bottom: 0;
}

.bottom-cta p {
    margin: 20px auto 0;
    max-width: 480px;
    color: #6f6c7a;
    font-size: 16px;
    line-height: 1.65;
    opacity: 1;
}

.bottom-cta .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-orange {
    background: #6C3FA8;
    color: #ffffff;
    font-size: 14px;
    padding: 15px 50px;
    border: 2px solid #6C3FA8;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #ffffff;
    color: #6C3FA8;
    border: 1px solid #6C3FA8;
}

.btn-outline-purple {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #6C3FA8;
    font-size: 14px;
    padding: 15px 50px;
    border: 2px solid #6C3FA8;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background: #6C3FA8;
    color: #ffffff;
}

/* ============================================================
           FOOTER (shared with homepage)
           ============================================================ */
footer a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6C3FA8;
}

.site-footer {
    background-color: #0a0a0d;
    color: #9a9aa3;
    padding: 70px 0 0;
}

.site-footer a {
    color: #9a9aa3 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffffff !important;
}

.site-footer .footer-desc {
    color: #9a9aa3;
    font-size: 15px;
    max-width: 320px;
    margin-top: 20px;
}

.site-footer .footer-col-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 16px;
    font-size: 15px;
}

.site-footer .footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.site-footer .footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #2a2a30;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-footer .footer-socials a:hover {
    background: #6C3FA8;
    border-color: #6C3FA8;
}

.site-footer hr {
    border-color: #1f1f24;
    opacity: 1;
    margin: 50px 0 0;
}

.site-footer .footer-bottom {
    padding: 22px 0;
    font-size: 14px;
}

.site-footer .footer-bottom a {
    margin-left: 24px;
}

.whatsapp-float {
    position: fixed;
    right: 55px;
    bottom: 55px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
    z-index: 1050;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-wave 2.2s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: 1.1s;
}

@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .whatsapp-float::before,
    .whatsapp-float::after {
        animation: none;
        display: none;
    }
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 36px rgba(37, 211, 102, .5);
}

.whatsapp-float svg {
    width: 42px;
    height: 42px;
    fill: #ffffff;
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        right: 30px;
        bottom: 30px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float svg {
        width: 36px;
        height: 36px;
    }
}

/* ===================== about.html ===================== */
/* ============================================================
           OUR STORY
           ============================================================ */
.story-section {
    padding: 90px 0 70px;
    background: #ffffff;
    overflow: hidden;
}

.story-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .story-top {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

.story-left .eyebrow {
    margin-bottom: 18px;
}

.story-left h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    padding-bottom: 0;
    letter-spacing: -0.01em;
}

.story-left h1 span {
    color: #6C3FA8;
}

.story-left p {
    color: #6f6c7a;
    opacity: 1;
    font-size: 15.5px;
    line-height: 1.75;
    margin-top: 22px;
}

.story-left .btn-orange {
    display: inline-block;
    margin-top: 30px;
}

/* ============================================================
           MISSION & VISION
           ============================================================ */
.mission-vision-section {
    padding: 20px 0 70px;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 1160px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    border-radius: 20px;
    padding: 40px;
}

.mv-card .sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e6ddf2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.mv-card .sc-icon svg {
    width: 26px;
    height: 26px;
    stroke: #6C3FA8;
    fill: none;
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.mv-card p {
    color: #6f6c7a;
    opacity: 1;
    font-size: 15px;
    line-height: 1.7;
}

.story-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.85;
    border-radius: 24px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
           CORE VALUES
           ============================================================ */
.values-section {
    padding: 20px 0 80px;
    background: #f8f6fc;
}

.values-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.values-heading .eyebrow {
    justify-content: center;
}

.values-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-top: 12px;
    padding-bottom: 0;
}

.values-heading p {
    margin-top: 12px;
    color: #6f6c7a;
    font-size: 15.5px;
    opacity: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 12px 34px rgba(20, 10, 40, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
}

.benefit-card .sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f2eafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card .sc-icon svg {
    width: 26px;
    height: 26px;
    stroke: #6C3FA8;
    fill: none;
}

.benefit-card .sc-icon i {
    font-size: 22px;
    color: #6C3FA8;
}

.benefit-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #171520;
    margin-bottom: 8px;
}

.benefit-card .sc-tagline {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6f6c7a;
    opacity: 1;
    margin-bottom: 0;
}

/* ============================================================
           MEET OUR EXPERTS
           ============================================================ */
.team-section {
    padding: 90px 0;
    background: #f8f6fc;
    overflow: hidden;
}

.team-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .team-layout {
        grid-template-columns: 1fr;
    }
}

.team-left .eyebrow {
    margin-bottom: 14px;
}

.team-left h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    padding-bottom: 0;
    line-height: 1.15;
}

.team-left h2 span {
    color: #6C3FA8;
    font-style: italic;
}

.team-left p {
    margin-top: 18px;
    color: #6f6c7a;
    opacity: 1;
    font-size: 15px;
    line-height: 1.75;
}

.team-arrows {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.team-arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #6C3FA8;
    background: transparent;
    color: #6C3FA8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
}

.team-arrows button:hover {
    background: #6C3FA8;
    color: #ffffff;
}

.team-arrows button svg {
    width: 18px;
    height: 18px;
}

.team-track-wrap {
    overflow: hidden;
}

.team-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
}

.team-card {
    flex: 0 0 300px;
}

.team-card .team-photo {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    border-radius: 16px;
    background: linear-gradient(150deg, #9B6FC9, #6C3FA8 55%, #3B2A52);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-card .team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 80%, rgba(255, 255, 255, .18), transparent 55%);
}

.team-card .team-initials {
    position: relative;
    font-family: 'Britanica', 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
    letter-spacing: -0.02em;
}

.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.team-card .team-info {
    text-align: center;
    margin-top: 20px;
}

.team-card h3 {
    font-size: 19px;
    margin-bottom: 4px;
    padding-bottom: 0;
}

.team-card .team-role {
    font-size: 14px;
    color: #6f6c7a;
    opacity: 1;
    margin-bottom: 14px;
}

.team-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================================
           OUR PARTNERS
           ============================================================ */
.partners-section {
    padding: 70px 0;
    background: #ffffff;
}

.partners-heading {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
}

.partners-heading .eyebrow {
    justify-content: center;
}

.partners-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-top: 12px;
    padding-bottom: 0;
}

.partners-carousel {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-wordmark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 200px;
    height: 96px;
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    border-radius: 14px;
    font-family: 'Britanica', 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #6f6c7a;
    letter-spacing: -0.01em;
    transition: color .3s ease, border-color .3s ease, transform .3s ease;
}

.partner-wordmark:hover {
    color: #6C3FA8;
    border-color: #6C3FA8;
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
    }
}

/* ===================== index.html ===================== */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
}

.hero {
    position: relative;
    overflow: hidden;
    /* background-color: #050505 !important; */
    color: #ffffff;
    padding-top: 200px;
    padding-bottom: 150px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(108, 63, 168, 0.55) 0%, rgba(108, 63, 168, 0) 70%);
    animation: heroGlowMove 14s ease-in-out infinite alternate;
}

.hero::after {
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    max-height: 600px;
    bottom: -20%;
    right: -8%;
    background: radial-gradient(circle, rgba(108, 63, 168, 0.5) 0%, rgba(108, 63, 168, 0) 70%);
    animation: heroGlowMove 18s ease-in-out infinite alternate-reverse;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes heroGlowMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.15);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero::before,
    .hero::after {
        animation: none;
    }
}

@media (max-width: 767.98px) {

    .hero::before,
    .hero::after {
        filter: blur(80px);
        opacity: 0.8;
    }
}

#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    padding: 20px 0;
    background: transparent;
    transition: padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}

h2 {

    font-size: 40px;
    font-weight: 600 !important;
    padding-bottom: 25px;

}

.h5 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-size: 17px;
}

h3 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 24px;

}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 15px;
    opacity: 80%;

}

a {
    text-decoration: none;
    color: black;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 16px;


}

.bg-test {
    background: url("../images/cta-bg.webp") no-repeat center center / cover;
    border-radius: 20px;


}

.cutome-image {
    display: flex;
    align-items: center;

    justify-content: center;



    text-align: center;

    margin-top: -80px;
}

.services-bg {
    background: url("../images/it-service-company.webp") no-repeat center center / cover;
    position: relative;
    width: 100%;
    max-width: 475px;
    height: 450px;
    border-radius: 10px;
    margin: auto;
    overflow: hidden;
}

.corner-text {
    position: absolute;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    padding: 40px 0px 5px;
    border-radius: 5px;
    z-index: 2;
    max-width: 40%;
    line-height: 1.3;
}

.top-right {
    top: 10px;
    right: 0px;

    text-align: left;

}

.bottom-left {
    bottom: 10px;
    left: 30px;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .services-bg {
        height: 450px;
        max-width: 100%;
    }

    .bottom-left {

        bottom: 0px;
        left: 10px;
        text-align: left;
    }

    .corner-text {
        font-size: 1rem;
        padding: 40px 15px;
        max-width: 45%;
    }
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 65px;
    font-weight: 600 !important;
    /* letter-spacing: 0.5px; */
    margin-bottom: 15px;
    color: #000000;
}

.btn-orange {
    background: #6C3FA8;
    color: #ffffff;
    font-size: 14px;
    padding: 15px 50px;
    border: 2px solid #6C3FA8;
    /* light black border */
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;

    /* opacity: 80%; */

}

.btn-orange:hover {
    background: #ffffff;
    color: #6C3FA8;
    border: 1px solid #6C3FA8;

}

.custom-alignment {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;

}

/* Base Structure */
.dual-column-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* min-height: 70vh; */
    gap: 20px;
    /* margin-left: 10px; */
    /* background-color: #f8f6fc; */
    margin: auto
}

/* Common Styles */
.stats-column,
.cta-column {
    position: relative;
    background-size: cover;
    background-position: center;
}

.stats-column {
    position: relative;
    background: url("../images/project-finished.webp") no-repeat center center / cover;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
}

.cta-column {
    position: relative;
    background: url("../images/cta-bg.webp") no-repeat center center / cover;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
}

.stats-column>*,
.cta-column>* {
    position: relative;
    z-index: 2;
}

.stats-content,
.cta-content {

    /* padding: 2rem; */
    padding: 25px;
}

/* Stats Styles */
.stats-number {
    font-family: 'Sora', sans-serif;
    color: white;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.stats-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* CTA Styles */
.cta-heading {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    /* font-weight: bold !important; */
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.cta-button-wrapper {
    display: flex;
    justify-content: flex-end;
    /* Pushes button to right */
}

a {
    color: #6C3FA8;
}

.hero-animated-wrapper {
    max-width: 1200px;
    width: 100%;
    min-height: 165px;
    margin: 0 auto;
}

.cursor {
    display: inline-block;
    color: #6C3FA8;
    margin-left: 2px;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

#typed-orange {
    color: #6C3FA8;
}

#typed-white {
    color: #000000;
}

.tech-icons-project {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;

    gap: 0;

}

.tech-icons-project img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-left: -12px;
    /* overlap effect */
    z-index: 1;
    position: relative;
}

.tech-icons-project img:first-child {
    margin-left: 0;
    /* no overlap on first */
}

.tech-icons-project svg {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    margin-left: 20px;
    /* space between icons and plus */
    fill: #fcfcfc;
}

footer {
    a {
        color: black;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #6C3FA8;
        ;
    }
}

.company_info h2 {
    font-size: 36px;
}

/* Responsive Design */



@media (max-width: 768px) {

    .hero {
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 16px;

    }

    .custom-alignment {
        padding-left: 15px;
        padding-right: 15px;
    }

    .tech-icons-project {
        flex-wrap: wrap;
        /* allow wrapping */
        justify-content: center;
        /* center on small screens */
    }

    .tech-icons-project img,
    .tech-icons-project svg {
        width: 35px;
        height: 35px;
        margin-left: 0;
        /* remove overlap on small */
        margin: 5px;
    }

    .cta-button-wrapper {
        display: flex;
        justify-content: center !important;
        align-items: center;
        /* Pushes button to right */
    }

    .stats-number {
        font-size: 40px !important;
    }

    .stats-text {
        font-size: 30px !important;
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }

    .cta-heading {
        font-size: 2.75rem;
    }

    .dual-column-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .stats-column,
    .cta-column {
        padding: 6rem 2rem !important;
        border: none !important;
    }

    .stats-content,
    .cta-content {
        text-align: center;
    }

    .stats-number {
        font-size: 18px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .company_info h2 {
        font-size: 28px;
    }
}

/* ============================================================
           OUR PROCESS
           ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6C3FA8;
}

.eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6C3FA8;
    display: inline-block;
}

.process {
    padding: 60px 0 60px;
    background: #f8f6fc;
    overflow: hidden;
}

.process-head {
    max-width: 640px;
    margin: 0 auto 0px;
    text-align: center;
}

.process-head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin-top: 14px;
    padding-bottom: 0;
}

.process-head p {
    margin-top: 16px;
    color: #6f6c7a;
    font-size: 15px;
    line-height: 1.65;
    opacity: 1;
}

.wheel-shell-right {
    width: min(980px, 100%);
    margin: 0px auto 0;
    display: grid;
    grid-template-columns: minmax(380px, 540px) minmax(43px, 1fr);
    gap: 24px;
    align-items: center;
}

.wheel-shell-right .wcenter-kicker,
.wheel-shell-right .wcenter-copy {
    display: none;
}

@media (max-width:991px) {
    .wheel-shell-right {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 540px;
    }
}

.wheel-copy {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wheel-copy .eyebrow {
    margin-bottom: 14px;
}

.wheel-copy h4 {
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 360px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.wheel-copy p {
    margin-top: 14px;
    max-width: 360px;
    color: #6f6c7a;
    font-size: 14.5px;
    line-height: 1.65;
    opacity: 1;
}

.wheel-wrap {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    display: grid;
    place-items: center;
}

.wheel-glow {
    position: absolute;
    width: 74%;
    height: 74%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 63, 168, .14), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
}

.wheel-wrap svg {
    width: 100%;
    height: 80%;
    overflow: visible;
}

.base-ring {
    fill: none;
    stroke: #e3ddef;
    stroke-width: 52;
}

.wsegment {
    fill: none;
    stroke-width: 50;
    stroke-linecap: round;
    cursor: pointer;
    opacity: .32;
    transition: opacity .2s ease;
}

.wsegment:hover {
    opacity: .65;
}

.wsegment.hit {
    stroke: transparent;
    stroke-width: 74;
    opacity: 1;
}

.wtick {
    stroke: #d9d2e6;
    stroke-width: 2;
}

.wcenter-card {
    position: absolute;
    width: 36%;
    height: 36%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(150deg, #ffffff, #faf7ff);
    border: 1px solid #e7e2f0;
    box-shadow: 0 30px 70px rgba(60, 20, 110, .12), inset 0 1px 0 rgba(255, 255, 255, .6);
}

.wcenter-num {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #6C3FA8;
    margin-bottom: 8px;
}

.wcenter-kicker {
    font-size: 10.5px;
    color: #6f6c7a;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.wcenter-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 2.2vw, 17px);
    font-weight: 750;
    line-height: 1.06;
    margin-top: 7px;
    letter-spacing: -.02em;
    color: #0b0a0d;
}

.wcenter-copy {
    font-size: 12.5px;
    line-height: 1.5;
    color: #6f6c7a;
    margin-top: 10px;
}

.wstage-label {
    position: absolute;
    min-width: 120px;
    padding: 8px 12px;
    border-radius: 100px;
    border: 1px solid #e7e2f0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    color: #171520;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(40, 10, 80, .06);
}

.wcontrols {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.wctrl {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #6C3FA8;
    color: #0b0a0d;
    background: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 15px;
    transition: background .3s ease, color .3s ease;
}

.wctrl:hover {
    background: #6C3FA8;
    color: #fff;
}

.wprogress {
    width: 88px;
    height: 4px;
    background: #e7e2f0;
    border-radius: 100px;
    overflow: hidden;
}

.wprogress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #6C3FA8, #9B6FC9);
}

@media (max-width:991px) {
    .wheel-shell-right {
        grid-template-columns: 1fr;
        width: min(600px, 100%);
        gap: 20px;
    }

    .wheel-copy {
        min-height: auto;
        text-align: center;
        align-items: center;
        order: 2;
    }

    .wheel-copy.right {
        display: flex;
        text-align: center;
        align-items: center;
        order: 2;
    }

    .wheel-wrap {
        order: 1;
        width: min(500px, 100%);
        justify-self: center;
    }

    .wheel-copy h4,
    .wheel-copy p {
        max-width: 500px;
    }

    .wcenter-card .wcenter-kicker,
    .wcenter-card .wcenter-copy {
        display: none;
    }

    #rightPanel {
        margin-left: 0;
        margin-bottom: 15px;
    }
}

/* ============================================================
           WHO WE WORK WITH (TRUSTED)
           ============================================================ */
.trusted {
    padding: 60px 0 60px;
    /* background: #f8f6fc; */
}

.trusted-top {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.trusted-top h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    margin-top: 12px;
    padding-bottom: 0;
}

.trusted-top p {
    margin-top: 12px;
    color: #6f6c7a;
    font-size: 15.5px;
    line-height: 1.6;
    opacity: 1;
}

.marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 26px;
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 14px;
    white-space: nowrap;
}

.industry-card .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f2eafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card .ic svg {
    width: 18px;
    height: 18px;
    stroke: #6C3FA8;
}

.industry-card span {
    font-weight: 600;
    font-size: 14.5px;
    color: #171520;
}

/* ============================================================
           TESTIMONIALS
           ============================================================ */
.testimonials {
    padding: 60px 0 60px;
    /* background: #f8f6fc; */
}

.testi-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.testi-top h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin-top: 14px;
    max-width: 560px;
    padding-bottom: 0;
}

.testi-top p {
    margin-top: 14px;
    color: #6f6c7a;
    font-size: 15.5px;
    max-width: 420px;
    opacity: 1;
}

.testi-nav {
    display: flex;
    gap: 10px;
}

@media (max-width: 767px) {
    .testi-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testi-top h2,
    .testi-top p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .testi-nav {
        display: none;
    }

    .hide-mobile-br {
        display: none;
    }

    .hero-lead {
        text-align: justify;
    }
}

.testi-viewport {
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 24px;
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 20px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.testi-quote-ico {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
}

.testi-quote-ico svg {
    width: 100%;
    height: 100%;
    fill: #6C3FA8;
    opacity: .9;
}

.testi-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #171520;
    flex-grow: 1;
    opacity: 1;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(140deg, #6C3FA8, #3B2A52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testi-person strong {
    display: block;
    font-size: 14px;
    color: #0b0a0d;
}

.testi-person span {
    font-size: 12.5px;
    color: #6f6c7a;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testi-dots .dt {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a2532;
    opacity: .3;
    cursor: pointer;
    transition: all .3s ease;
}

.testi-dots .dt.active {
    opacity: 1;
    background: #6C3FA8;
    width: 22px;
    border-radius: 100px;
}

@media (max-width:1080px) {
    .testi-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width:600px) {
    .testi-card {
        flex: 0 0 100%;
    }
}

/* ============================================================
           BOTTOM CTA
           ============================================================ */
.bottom-cta {
    text-align: center;
    padding: 20px 0 110px;
    background: #f8f6fc;
}

.bottom-cta .eyebrow {
    justify-content: center;
    margin: 0 auto 18px;
}

/* ===================== services.html ===================== */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 15px;
    opacity: 80%;
}

a {
    text-decoration: none;
    color: #6C3FA8;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 16px;
}

/* ============================================================
           SERVICES GRID
           ============================================================ */
.services-grid-section {
    padding: 70px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    padding: 34px 32px;
    box-shadow: 0 12px 34px rgba(20, 10, 40, .05);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
}

.service-card .sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f2eafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .sc-icon svg {
    width: 26px;
    height: 26px;
    stroke: #6C3FA8;
    fill: none;
}

.service-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #171520;
    margin-bottom: 8px;
}

.service-card .sc-tagline {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6f6c7a;
    opacity: 1;
    margin-bottom: 18px;
}

.service-card .sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}

.service-card .sc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #171520;
}

.service-card .sc-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: #6C3FA8;
    fill: none;
}

.service-card .sc-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 14px;
    color: #6C3FA8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
           CARD DESIGN SAMPLES (alternate styles)
           ============================================================ */
.design-samples-section {
    padding: 30px 0 70px;
}

.design-samples-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.design-samples-heading .eyebrow {
    justify-content: center;
}

.design-samples-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-top: 12px;
    padding-bottom: 0;
}

.design-samples-heading p {
    margin-top: 12px;
    color: #6f6c7a;
    font-size: 15.5px;
    opacity: 1;
}

.design-sample-label {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #6C3FA8;
    max-width: 1160px;
    margin: 0 auto 20px;
}

.design-samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto 56px;
}

.design-samples-grid:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .design-samples-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Sample 1: Numbered minimal --- */
.sc-numbered {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 16px;
    padding: 32px 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s ease, transform .3s ease;
}

.sc-numbered:hover {
    border-color: #6C3FA8;
    transform: translateY(-4px);
}

.sc-numbered .sc-num {
    position: absolute;
    top: -8px;
    right: 14px;
    font-family: 'Sora', sans-serif;
    font-size: 76px;
    font-weight: 800;
    color: #f2eafa;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.sc-numbered .sc-body {
    position: relative;
    z-index: 1;
}

.sc-numbered h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #171520;
    margin-bottom: 8px;
}

.sc-numbered .sc-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6c7a;
    margin-bottom: 16px;
}

.sc-numbered .sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
}

.sc-numbered .sc-list li {
    font-size: 13.5px;
    color: #171520;
    padding-left: 14px;
    position: relative;
}

.sc-numbered .sc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6C3FA8;
}

.sc-numbered .sc-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 13.5px;
    color: #6C3FA8;
    border-top: 1px solid #f0ebf9;
    padding-top: 16px;
}

/* --- Sample 3: Horizontal split --- */
.sc-horizontal {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 16px;
    padding: 28px 26px 28px 24px;
    display: flex;
    gap: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sc-horizontal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 4px;
    background: #6C3FA8;
}

.sc-horizontal:hover {
    box-shadow: 0 16px 38px rgba(20, 10, 40, .08);
    transform: translateY(-4px);
}

.sc-horizontal .sc-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f2eafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-horizontal .sc-icon svg {
    width: 22px;
    height: 22px;
    stroke: #6C3FA8;
    fill: none;
}

.sc-horizontal h3 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #171520;
    margin-bottom: 6px;
}

.sc-horizontal .sc-tagline {
    font-size: 13.5px;
    line-height: 1.55;
    color: #6f6c7a;
    margin-bottom: 12px;
}

.sc-horizontal .sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sc-horizontal .sc-list li {
    font-size: 12px;
    font-weight: 600;
    color: #6C3FA8;
    background: #f8f6fc;
    border: 1px solid #efe9f7;
    padding: 4px 10px;
    border-radius: 100px;
}

.sc-horizontal .sc-link {
    font-weight: 600;
    font-size: 13.5px;
    color: #6C3FA8;
}

/* --- Sample 5: Stat-highlight --- */
.sc-stat {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sc-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
}

.sc-stat-top {
    background: radial-gradient(circle at 30% 30%, #9B6FC9, #6C3FA8 60%, #3B2A52);
    padding: 26px 28px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.sc-stat-top .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.sc-stat-top .stat-label {
    font-size: 12.5px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sc-stat-body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sc-stat h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #171520;
    margin-bottom: 8px;
}

.sc-stat .sc-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6c7a;
    margin-bottom: 16px;
}

.sc-stat .sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
}

.sc-stat .sc-list li {
    font-size: 13.5px;
    color: #171520;
    padding-left: 14px;
    position: relative;
}

.sc-stat .sc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #6C3FA8;
}

.sc-stat .sc-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 13.5px;
    color: #6C3FA8;
}

/* --- Sample 6: Media banner --- */
.sc-media {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 34px rgba(20, 10, 40, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.sc-media:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
}

.sc-media-banner {
    height: 110px;
    background: radial-gradient(circle at 30% 30%, #9B6FC9, #6C3FA8 60%, #3B2A52);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sc-media-banner svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.6;
}

.sc-media-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sc-media h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #171520;
    margin-bottom: 8px;
}

.sc-media .sc-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6c7a;
    margin-bottom: 16px;
}

.sc-media .sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.sc-media .sc-list li {
    font-size: 13px;
    color: #171520;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sc-media .sc-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6C3FA8;
    flex-shrink: 0;
}

.sc-media .sc-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 13.5px;
    color: #6C3FA8;
}

/* --- Sample 7: Icon rotate --- */
.sc-rotate {
    position: relative;
    margin-bottom: 0;
}

.sc-rotate-inner {
    position: relative;
    padding: 30px 30px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e7e2f0;
    background: linear-gradient(to bottom, rgba(23, 21, 32, .04) 0%, #f8f6fc 100%);
    transition: box-shadow .3s ease, transform .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sc-rotate-inner::before {
    position: absolute;
    content: '';
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 13px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(23, 21, 32, 0) 100%);
    z-index: 0;
}

.sc-rotate-inner:hover {
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
    transform: translateY(-6px);
}

.sc-rotate-inner>* {
    position: relative;
    z-index: 1;
}

.sc-rotate-icon {
    position: relative;
    width: 64px;
    height: 64px;
    font-size: 28px;
    line-height: 64px;
    text-align: center;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6C3FA8;
    transition: all 500ms ease;
}

.sc-rotate-icon::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* opacity: .5; */
    border-radius: 50px;
    background: #f2eafa;
}

.sc-rotate-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.sc-rotate-inner:hover .sc-rotate-icon {
    color: #ffffff;
    transform: rotateY(180deg);
}

.sc-rotate-inner:hover .sc-rotate-icon::before {
    background: #6C3FA8;
}

.sc-rotate h3 {
    position: relative;
    margin-top: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #171520;
}

.sc-rotate .sc-tagline {
    position: relative;
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #6f6c7a;
}

.sc-rotate-join {
    position: relative;
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #171520;
    text-decoration: none;
    display: inline-block;
}

.sc-rotate-join:hover {
    color: #6C3FA8;
}

/* ===================== contact.html ===================== */
/* ============================================================
           CONTACT INFO CARDS
           ============================================================ */
.contact-info-section {
    padding: 0px 0 20px;
    background: #ffffff;
}

.contact-info-heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6C3FA8;
    justify-content: center;
    margin-bottom: 14px;
}

.contact-info-heading .eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6C3FA8;
    display: inline-block;
}

.contact-info-heading h2 {
    padding-bottom: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

@media (max-width: 767.98px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: #f4f2f7;
    border: none;
    border-radius: 18px;
    padding: 40px;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.contact-info-card:hover {
    background: #6C3FA8;
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(108, 63, 168, .3);
}

.contact-info-card .sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e6ddf2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background .3s ease;
}

.contact-info-card:hover .sc-icon {
    background: #ffffff;
}

.contact-info-card .sc-icon svg {
    width: 24px;
    height: 24px;
    stroke: #6C3FA8;
    fill: none;
    transition: stroke .3s ease;
}

.contact-info-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #171520;
    margin-bottom: 20px;
    transition: color .3s ease;
}

.contact-info-card:hover h3 {
    color: #ffffff;
}

.office-detail-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14.5px;
    line-height: 1.6;
}

.office-detail-row:last-child {
    margin-bottom: 0;
}

.office-detail-row span {
    font-weight: 600;
    color: #171520;
    flex-shrink: 0;
    transition: color .3s ease;
}

.office-detail-row a,
.office-detail-row p {
    color: #6f6c7a;
    font-size: 14.5px;
    opacity: 1;
    transition: color .3s ease;
}

.contact-info-card:hover .office-detail-row span {
    color: #ffffff;
}

.contact-info-card:hover .office-detail-row a,
.contact-info-card:hover .office-detail-row p {
    color: rgba(255, 255, 255, .85);
}

/* ============================================================
           CONTACT FORM
           ============================================================ */
.contact-form-section {
    padding: 70px 0 110px;
    background: #ffffff;
}

.contact-form-top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-form-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-form-left .eyebrow {
    margin-bottom: 18px;
}

.contact-form-left h2 {
    font-size: clamp(28px, 3.6vw, 38px);
    line-height: 1.18;
    padding-bottom: 0;
    letter-spacing: -0.01em;
}

.contact-form-left p {
    color: #6f6c7a;
    opacity: 1;
    font-size: 15.5px;
    line-height: 1.75;
    margin-top: 22px;
}

.contact-form-left .footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-form-left .footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e7e2f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C3FA8 !important;
    transition: background 0.3s ease, border-color 0.3s ease, color .3s ease;
}

.contact-form-left .footer-socials a:hover {
    background: #6C3FA8;
    border-color: #6C3FA8;
    color: #ffffff !important;
}

.contact-form-right {
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 575.98px) {
    .contact-form-right {
        padding: 28px 22px;
    }
}

.contact-form-right .form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #171520;
    margin-bottom: 8px;
}

.contact-form-right .form-control,
.contact-form-right .form-select {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    padding: 12px 16px;
    border: 1px solid #e7e2f0;
    border-radius: 10px;
    background: #ffffff;
}

.contact-form-right .form-control:focus,
.contact-form-right .form-select:focus {
    border-color: #6C3FA8;
    box-shadow: 0 0 0 3px rgba(108, 63, 168, .12);
}

.contact-form-right textarea.form-control {
    resize: vertical;
}

.contact-form-right .btn-orange {
    width: 100%;
    border-radius: 10px;
    padding: 14px 24px;
}

/* ============================================================
           SOCIAL COMMUNITY
           ============================================================ */
.social-section {
    padding: 20px 0 70px;
    background: #ffffff;
    text-align: center;
}

.social-section h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    padding-bottom: 22px;
}

.social-section .footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-section .footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f4f2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, transform .3s ease;
}

.social-section .footer-socials a svg {
    width: 20px;
    height: 20px;
    color: #6C3FA8;
    transition: color .3s ease;
}

.social-section .footer-socials a:hover {
    background: #6C3FA8;
    transform: translateY(-4px);
}

.social-section .footer-socials a:hover svg {
    color: #ffffff;
}

/* ============================================================
           SUPPORT CARD
           ============================================================ */
.support-section {
    text-align: center;
    padding: 20px 0 110px;
    background: #f8f6fc;
}

.support-card h2 {
    font-size: clamp(24px, 3vw, 32px);
    max-width: 720px;
    margin: 0 auto 18px;
    line-height: 1.2;
    padding-bottom: 0;
}

.support-card p {
    color: #6f6c7a;
    opacity: 1;
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: 15.5px;
    line-height: 1.7;
}

.support-card-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 34px;
}

.support-card-contact {
    text-align: left;
}

.support-card-contact span {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6f6c7a;
    margin-bottom: 4px;
}

.support-card-contact a {
    color: #171520;
    font-size: 15.5px;
    font-weight: 600;
}

/* ============================================================
           MAP
           ============================================================ */
.map-section {
    padding: 70px 0 90px;
    background: #ffffff;
}

.map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e7e2f0;
    box-shadow: 0 20px 46px rgba(20, 10, 40, .06);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* ===================== blog.html ===================== */
/* ============================================================
           BLOG GRID + SIDEBAR
           ============================================================ */
.blog-grid-section {
    padding: 90px 0 70px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1199.98px) {
    .blog-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1199.98px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(20, 10, 40, .05);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
}

.blog-card .blog-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-card .blog-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .blog-meta {
    font-size: 12.5px;
    font-weight: 500;
    color: #9a97a3;
    margin-bottom: 12px;
}

.blog-card .blog-meta .dot {
    margin: 0 6px;
    color: #d7c8ec;
}

.blog-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #171520;
    line-height: 1.35;
    margin-bottom: 14px;
    padding-bottom: 0;
}

.blog-card h3 a {
    color: #171520;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.blog-card h3 a:hover {
    color: #6C3FA8;
}

.blog-card .sc-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 13.5px;
    color: #6C3FA8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

@media (max-width: 767.98px) {
    .blog-layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .blog-sidebar {
        order: -1;
    }

    .blog-sidebar .sidebar-widget:not(.search-widget) {
        display: none;
    }

    .blog-sidebar .search-widget {
        background: none;
        border: none;
        padding: 0;
    }
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    padding: 26px;
}

.sidebar-widget h4 {
    font-size: 17px;
    margin-bottom: 18px;
    padding-bottom: 0;
}

.search-widget form {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 13px 46px 13px 16px;
    border: 1px solid #e7e2f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #171520;
}

.search-widget input:focus {
    outline: none;
    border-color: #6C3FA8;
}

.search-widget button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: #6C3FA8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-widget button svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
}

.latest-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0ebf9;
}

.latest-post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.latest-post-item .thumb-mini {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
}

.latest-post-item .thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-post-item h6 {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.latest-post-item h6 a {
    color: #171520;
    font-family: 'Sora', sans-serif;
}

.latest-post-item h6 a:hover {
    color: #6C3FA8;
}

.latest-post-item .post-date {
    font-size: 12px;
    color: #9a97a3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.latest-post-item .post-date svg {
    width: 12px;
    height: 12px;
    stroke: #9a97a3;
    fill: none;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8f6fc;
    color: #171520;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: background .2s ease, color .2s ease;
}

.category-list a:last-child {
    margin-bottom: 0;
}

.category-list a span {
    color: #9a97a3;
    font-size: 12.5px;
}

.category-list a:hover {
    background: #6C3FA8;
    color: #ffffff;
}

.category-list a:hover span {
    color: rgba(255, 255, 255, .8);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list a {
    font-size: 12.5px;
    font-weight: 500;
    color: #6f6c7a;
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    padding: 7px 14px;
    border-radius: 100px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.tag-list a:hover {
    background: #6C3FA8;
    color: #ffffff;
    border-color: #6C3FA8;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.blog-pagination a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e7e2f0;
    background: #ffffff;
    color: #171520;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.blog-pagination a:hover {
    border-color: #6C3FA8;
    color: #6C3FA8;
}

.blog-pagination a.active {
    background: #6C3FA8;
    border-color: #6C3FA8;
    color: #ffffff;
}

.blog-pagination a.next svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

/* ===================== blog-detail.html ===================== */
.page-hero h1 {
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 700;
    color: #171520;
    margin-top: 14px;
    letter-spacing: -0.02em;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
           ARTICLE
           ============================================================ */
.article-section {
    padding: 80px 0 70px;
}

.article-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1199.98px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar (shared pattern with blog.html) */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    padding: 26px;
}

.sidebar-widget h4 {
    font-size: 17px;
    margin-bottom: 18px;
    padding-bottom: 0;
}

.search-widget form {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 13px 46px 13px 16px;
    border: 1px solid #e7e2f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #171520;
}

.search-widget input:focus {
    outline: none;
    border-color: #6C3FA8;
}

.search-widget button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: #6C3FA8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-widget button svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
}

.latest-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0ebf9;
}

.latest-post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.latest-post-item .thumb-mini {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
}

.latest-post-item .thumb-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-post-item h6 {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.latest-post-item h6 a {
    color: #171520;
    font-family: 'Sora', sans-serif;
}

.latest-post-item h6 a:hover {
    color: #6C3FA8;
}

.latest-post-item .post-date {
    font-size: 12px;
    color: #9a97a3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.latest-post-item .post-date svg {
    width: 12px;
    height: 12px;
    stroke: #9a97a3;
    fill: none;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8f6fc;
    color: #171520;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: background .2s ease, color .2s ease;
}

.category-list a:last-child {
    margin-bottom: 0;
}

.category-list a span {
    color: #9a97a3;
    font-size: 12.5px;
}

.category-list a:hover {
    background: #6C3FA8;
    color: #ffffff;
}

.category-list a:hover span {
    color: rgba(255, 255, 255, .8);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list a {
    font-size: 12.5px;
    font-weight: 500;
    color: #6f6c7a;
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    padding: 7px 14px;
    border-radius: 100px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.tag-list a:hover {
    background: #6C3FA8;
    color: #ffffff;
    border-color: #6C3FA8;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding-bottom: 26px;
    margin-bottom: 34px;
    border-bottom: 1px solid #e7e2f0;
}

.article-meta-bar .meta-author {
    font-size: 14.5px;
    font-weight: 700;
    color: #171520;
}

.article-meta-bar .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: #6f6c7a;
}

.article-meta-bar .meta-item svg {
    width: 15px;
    height: 15px;
    stroke: #6C3FA8;
    fill: none;
}

.article-featured-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 36px;
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-body p {
    font-size: 16px;
    line-height: 1.85;
    color: #3a3742;
    opacity: 1;
    margin-bottom: 22px;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171520;
    margin: 40px 0 16px;
}

.article-takeaways {
    list-style: none;
    padding: 0;
    margin: 8px 0 30px;
    display: grid;
    gap: 14px;
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    border-radius: 16px;
    padding: 26px 28px;
}

.article-takeaways li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #171520;
    line-height: 1.55;
}

.article-takeaways li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #6C3FA8;
    fill: none;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid #e7e2f0;
}

.article-tags span {
    font-size: 12.5px;
    font-weight: 600;
    color: #6C3FA8;
    background: #f2eafa;
    padding: 6px 14px;
    border-radius: 100px;
}

/* ===================== service_detail.html ===================== */
/* ============================================================
           SERVICES DETAIL INTRO — Digital Growth System
           ============================================================ */
.services-detail-section {
    padding: 90px 0 70px;
    background: #ffffff;
    overflow: hidden;
}

.services-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    /* max-width: 1160px; */
    margin: 0 auto;
}

@media (max-width: 900px) {
    .services-detail-top {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

.services-detail-left .eyebrow {
    margin-bottom: 18px;
}

.services-detail-left h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    padding-bottom: 0;
    letter-spacing: -0.01em;
}

.services-detail-left h1 span {
    color: #6C3FA8;
}

.services-detail-left p {
    color: #6f6c7a;
    opacity: 1;
    font-size: 15.5px;
    line-height: 1.75;
    margin-top: 22px;
    /* max-width: 460px; */
}

.services-detail-keywords {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 600;
    color: #6C3FA8;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.services-detail-keywords span.dot {
    color: #d7c8ec;
}

.services-detail-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #ece6f5;
}

.services-detail-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.services-detail-metric .metric-num {
    font-family: 'Britanica', 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #d7c8ec;
}

.services-detail-metric .metric-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #171520;
}

/* Right side — growth system diagram */
.growth-system {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.growth-system svg {
    width: 100%;
    height: auto;
    display: block;
}

.growth-node-box {
    fill: #ffffff;
    stroke: #e7e2f0;
    stroke-width: 1;
    filter: drop-shadow(0 4px 10px rgba(20, 10, 40, .08));
    transition: stroke .25s ease, filter .25s ease;
}

.growth-node {
    cursor: pointer;
}

.growth-node:hover .growth-node-box {
    stroke: #6C3FA8;
    filter: drop-shadow(0 10px 22px rgba(108, 63, 168, .18));
}

.growth-node-text {
    fill: #171520;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.growth-hub-circle {
    fill: #6C3FA8;
}

.growth-hub-text {
    fill: #ffffff;
    font-family: 'Britanica', 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.growth-leader-line {
    stroke: #d7c8ec;
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

/* ============================================================
           WHAT'S INCLUDED
           ============================================================ */
.included-section {
    padding: 50px 0;
}

.included-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.included-heading .eyebrow {
    justify-content: center;
}

.included-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-top: 12px;
    padding-bottom: 0;
}

.included-list {
    display: grid;
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 16px;
    padding: 24px 28px;
    transition: border-color .3s ease, transform .3s ease;
}

.included-item:hover {
    border-color: #6C3FA8;
    transform: translateY(-3px);
}

.included-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f2eafa;
    color: #6C3FA8;
    font-family: 'Britanica', 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.included-item:hover .included-num {
    background: #6C3FA8;
}

.included-num svg {
    width: 22px;
    height: 22px;
    stroke: #6C3FA8;
    fill: none;
    transition: stroke .3s ease;
}

.included-item:hover .included-num svg {
    stroke: #ffffff;
}

.included-num i {
    font-size: 18px;
    color: #6C3FA8;
    transition: color .3s ease;
}

.included-item:hover .included-num i {
    color: #ffffff;
}

.included-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.included-item p {
    font-size: 14.5px;
    line-height: 1.65;
    opacity: 1;
    color: #6f6c7a;
    margin: 0;
}

/* ============================================================
           BENEFITS GRID
           ============================================================ */
.benefits-section {
    padding: 20px 0 80px;
    background: #f8f6fc;
}

.benefits-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.benefits-heading .eyebrow {
    justify-content: center;
}

.benefits-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-top: 12px;
    padding-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    /* max-width: 1160px; */
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e7e2f0;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 12px 34px rgba(20, 10, 40, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(20, 10, 40, .1);
}

.benefit-card .sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f2eafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card .sc-icon svg {
    width: 26px;
    height: 26px;
    stroke: #6C3FA8;
    fill: none;
}

.benefit-card .sc-icon i {
    font-size: 22px;
    color: #6C3FA8;
}

.benefit-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #171520;
    margin-bottom: 8px;
}

.benefit-card .sc-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6c7a;
    opacity: 1;
    margin-bottom: 0;
}

/* ============================================================
           AVAIL SERVICES CTA (ported from homepage cta-column)
           ============================================================ */
.cta-column-section {
    padding: 20px 0 70px;
    background: #f8f6fc;
}

.cta-column {
    position: relative;
    background: url("../images/cta-bg.webp") no-repeat center center / cover;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1160px;
    margin: 0 auto;
}

.cta-content {
    padding: 60px 50px;
}

.cta-heading {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    padding-bottom: 0;
    text-align: center;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .cta-content {
        padding: 40px 28px;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-button-wrapper {
        justify-content: flex-start;
    }
}

/* ============================================================
           OUR PARTNERS
           ============================================================ */
.partners-section {
    padding: 70px 0;
    background: #ffffff;
}

.partners-heading {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
}

.partners-heading .eyebrow {
    justify-content: center;
}

.partners-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-top: 12px;
    padding-bottom: 0;
}

.partners-carousel {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-wordmark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 200px;
    height: 96px;
    background: #f8f6fc;
    border: 1px solid #e7e2f0;
    border-radius: 14px;
    font-family: 'Britanica', 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #6f6c7a;
    letter-spacing: -0.01em;
    transition: color .3s ease, border-color .3s ease, transform .3s ease;
}

.partner-wordmark:hover {
    color: #6C3FA8;
    border-color: #6C3FA8;
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
    }
}

.included-section h2 span {
    color: #6C3FA8;
}