@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3654C8;
    --primary-gradient: linear-gradient(135deg, #3654C8 0%, #9747FF 100%);
    --cta-gradient: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #901fd7 100%);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --light-bg: #ffffff;
    --section-bg-light: #f8fafc;
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Custom Overrides for Bootstrap classes using the new linear gradient */
.text-primary {
    background: linear-gradient(135deg, #3654C8 0%, #9747FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.bg-primary {
    background: linear-gradient(135deg, #3654C8 0%, #9747FF 100%) !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: #334155;
    overflow-x: hidden;
}

/* Global button font size */
.btn {
    font-size: 14px !important;
}

h1,
.hero-title,
.hero-section h1:not(.home-hero-title) {
    font-family: 'Lexend', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size: 58px !important;
    line-height: 1.1 !important;
}

.home-hero-title {
    font-family: 'Lexend', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size: 72px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

/* Navbar Premium Styling */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.navbar-custom .nav-link {
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 4px;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-family: 'Lexend', sans-serif !important;
    font-weight: 500 !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    background-color: #3654C8 !important;
    color: #ffffff !important;
}

.navbar-custom .dropdown-item {
    font-size: 14px !important;
    font-family: 'Lexend', sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    padding: 10px 20px !important;
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

/* ============================================================
   CUSTOM ANIMATED HAMBURGER BUTTON
   ============================================================ */
.arukah-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.2s ease;
    z-index: 10001;
    position: relative;
}
.arukah-hamburger:hover {
    background: rgba(54, 84, 200, 0.08);
}
.arukah-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a;
    border-radius: 99px;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                width 0.3s ease;
}
/* Morph to X when open */
.arukah-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.arukah-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.arukah-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   FULL-SCREEN MOBILE MENU OVERLAY
   ============================================================ */
.arukah-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 28px 32px 40px;
    overflow-y: auto;
    /* Hidden state */
    clip-path: circle(0% at calc(100% - 48px) 48px);
    transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
}
.arukah-mobile-menu.is-open {
    clip-path: circle(150% at calc(100% - 48px) 48px);
    pointer-events: all;
}

/* Decorative gradient blobs */
.mm-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}
.mm-blob-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(54, 84, 200, 0.10) 0%, transparent 70%);
    top: -60px;
    right: -60px;
}
.mm-blob-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(151, 71, 255, 0.08) 0%, transparent 70%);
    bottom: 60px;
    left: -40px;
}

/* Close button */
.mm-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 50%;
    color: #0f172a;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1;
}
.mm-close:hover {
    background: rgba(54, 84, 200, 0.10);
    color: #3654C8;
    transform: rotate(90deg);
}

/* Logo */
.mm-logo {
    margin-top: 8px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.arukah-mobile-menu.is-open .mm-logo {
    opacity: 1;
    transform: translateY(0);
}
.mm-logo img,
.mm-logo .lazy-blur {
    height: 36px !important;
    width: auto !important;
    filter: none !important;
    opacity: 1 !important;
    border-radius: 0 !important;
}

/* Navigation wrapper */
.mm-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each top-level link row */
.mm-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.arukah-mobile-menu.is-open .mm-link:nth-child(1) {
    opacity: 1; transform: translateX(0);
    transition-delay: 0.22s;
}
.arukah-mobile-menu.is-open .mm-link:nth-child(2),
.arukah-mobile-menu.is-open .mm-link--parent:nth-child(2) {
    opacity: 1; transform: translateX(0);
    transition-delay: 0.30s;
}
/* Because the sub menu shifts the child order, target generically */
.arukah-mobile-menu.is-open .mm-nav > .mm-link,
.arukah-mobile-menu.is-open .mm-nav > .mm-link--parent {
    opacity: 1;
    transform: translateX(0);
}
.arukah-mobile-menu.is-open .mm-nav > *:nth-child(1) { transition-delay: 0.22s; }
.arukah-mobile-menu.is-open .mm-nav > *:nth-child(2) { transition-delay: 0.30s; }
.arukah-mobile-menu.is-open .mm-nav > *:nth-child(3) { transition-delay: 0.36s; }
.arukah-mobile-menu.is-open .mm-nav > *:nth-child(4) { transition-delay: 0.42s; }
.arukah-mobile-menu.is-open .mm-nav > *:nth-child(5) { transition-delay: 0.48s; }

.mm-link-num {
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.25);
    letter-spacing: 1px;
    min-width: 22px;
}
.mm-link-text {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
    line-height: 1;
    transition: color 0.2s ease;
}
.mm-link:hover .mm-link-text,
.mm-link--active .mm-link-text {
    background: linear-gradient(135deg, #3654C8, #9747FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Services accordion caret */
.mm-link--parent {
    user-select: none;
}
.mm-link-caret {
    font-size: 18px;
    color: rgba(15, 23, 42, 0.3);
    transition: transform 0.3s ease, color 0.2s ease;
}
.mm-link--parent.is-expanded .mm-link-caret {
    transform: rotate(180deg);
    color: #3654C8;
}

/* Sub-menu (services) */
.mm-sub {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding-left: 38px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}
.mm-sub.is-open {
    max-height: 300px;
    opacity: 1;
}
.mm-sub-link {
    display: block;
    padding: 12px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mm-sub-link:hover,
.mm-sub-link--active {
    color: #0f172a;
    padding-left: 8px;
}
.mm-sub-link--active {
    color: #3654C8;
}

/* CTA button */
.mm-cta {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}
.arukah-mobile-menu.is-open .mm-cta {
    opacity: 1;
    transform: translateY(0);
}
.mm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3654C8 0%, #9747FF 100%);
    color: #fff !important;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 100%;
    justify-content: center;
}
.mm-cta-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}


/* Tagline */
.mm-tagline {
    margin-top: 20px;
    text-align: center;
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease 0.55s;
}
.arukah-mobile-menu.is-open .mm-tagline {
    opacity: 1;
}

/* Backdrop */
.arukah-mm-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.arukah-mm-backdrop.is-visible {
    display: block;
    opacity: 1;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .arukah-hamburger { display: none !important; }
    .arukah-mobile-menu { display: none !important; }
    .arukah-mm-backdrop { display: none !important; }
}

/* Prevent body scroll when menu open */
body.mm-open {
    overflow: hidden;
}

/* =============================================
   SERVICES MEGA-MENU
   ============================================= */
.services-mega-parent {
    position: static !important;
}

/* Make the navbar container the positioning parent */
.navbar .container {
    position: relative;
}

.services-mega-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(680px, 92vw) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    padding: 8px !important;
    /* Smooth open animation */
    animation: megaFadeIn 0.18s ease forwards;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-service-item {
    display: block;
    padding: 22px 24px;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.18s ease;
    margin: 2px;
    height: calc(100% - 4px);
}

.mega-service-item:hover,
.mega-service-item:focus {
    background: #f5f6ff;
    text-decoration: none;
}

.mega-service-item.active .mega-service-title {
    color: var(--primary-color);
}

.mega-service-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

.mega-service-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

/* Divider between top and bottom rows */
.services-mega-menu .row > .col-6:nth-child(1),
.services-mega-menu .row > .col-6:nth-child(2) {
    border-bottom: 1px solid #f1f5f9;
}

/* Right column left border to create vertical divider */
.services-mega-menu .row > .col-6:nth-child(2),
.services-mega-menu .row > .col-6:nth-child(4) {
    border-left: 1px solid #f1f5f9;
}

/* ── The Arukah Standard list (Why Choose Us right panel) ────── */
.arukah-standard-list {
    padding: 8px 0;
}
.arukah-standard-list .standard-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.standard-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.75rem;
}
.standard-item:last-child {
    margin-bottom: 0;
}
.standard-bullet {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    background-color: #3654C8;
    border-radius: 50%;
    margin-top: 6px;
}
.standard-item-body .standard-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.45rem;
    line-height: 1.4;
}
.standard-item-body .standard-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}
/* ────────────────────────────────────────────────────────────── */

/* Lazy Blur styling */
.lazy-image-container {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    border-radius: 12px;
}

.lazy-blur {
    filter: blur(15px);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0.7;
    width: 100%;
    height: auto;
}

.lazy-blur.loaded {
    filter: blur(0);
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    margin: 0 15px;
    border-radius: 0 0 24px 24px;
    color: #ffffff;
    min-height: 650px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(15px);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0.7;
}

.hero-image-bg.loaded {
    filter: blur(0);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content-inner {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

/* home-hero-title defined above with hero heading rules */

/* Modern Buttons */
.btn-premium {
    background: linear-gradient(135deg, #1E3CAF 0%, #892AC8 50%, #B622D2 100%) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(182, 34, 210, 0.2);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 34, 210, 0.4);
}

.btn-header-contact {
    background: linear-gradient(135deg, #1E3CAF 0%, #892AC8 50%, #B622D2 100%) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 34, 210, 0.4);
}

/* Tab/Accordion customized style for Figma section 2 */
.accordion-custom-btn {
    width: 100%;
    text-align: left;
    background-color: #EBEEFA !important;
    border: none;
    padding: 20px;
    font-size: 14px !important;
    font-weight: 600;
    color: #121212 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-custom-content {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom Colored Boxes for Figma section 3 */
.how-it-works-box {
    border-radius: 12px;
    padding: 38px 30px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.how-it-works-box::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 6rem;
    opacity: 0.12;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: rotate(-15deg);
    transition: transform 0.3s ease;
}

.how-it-works-box:hover::after {
    transform: rotate(-25deg) scale(1.1);
}

.how-box-1 {
    background-blend-mode: multiply;
}
.how-box-1::after {
    content: '\f086';
}

.how-box-2 {
    background-blend-mode: multiply;
}
.how-box-2::after {
    content: '\f0eb';
}

.how-box-3 {
    background-blend-mode: multiply;
}
.how-box-3::after {
    content: '\f02d';
}

/* Service path cards for Figma section 4 */
.service-path-card {
    background-color: #0b0c16;
    color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-path-card:hover {
    transform: translateY(-5px);
}

.service-card-badge {
    background-color: #ffffff;
    color: #3b42c4;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.service-path-card h3 {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-path-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-path-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.btn-service-card {
    background-color: #ffffff;
    color: #3b42c4 !important;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    width: auto !important;
    transition: opacity 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-service-card:hover {
    opacity: 0.95;
}

/* World map layout points for Figma section 5 */
.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}
.map-container img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.globe-marker {
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 10;
}

.industry-label {
    background: #EBEEFA99;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #121212;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.industry-label:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px 0 rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    background: #EBEEFA;
    z-index: 99;
}

/* Precise absolute positioning matching the custom globe dots */
.industry-pos-1 { top: 22%; left: 16%; transform: translate(-50%, -50%); }
.industry-pos-2 { top: 13%; left: 74%; transform: translate(-50%, -50%); }
.industry-pos-3 { top: 68%; left: 10%; transform: translate(-50%, -50%); }
.industry-pos-4 { top: 65%; left: 51%; transform: translate(-50%, -50%); }
.industry-pos-5 { top: 86%; left: 47%; transform: translate(-50%, -50%); }
.industry-pos-6 { top: 73%; left: 88%; transform: translate(-50%, -50%); }

/* Pulsing dot indicator inside each label */
.pulsing-dot-indicator {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3654C8, #9747FF);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    position: relative;
}

.pulsing-dot-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #3654C8, #9747FF);
    border-radius: 50%;
    animation: label-pulse 1.8s infinite ease-in-out;
}

@keyframes label-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Mobile responsive scaling for globe labels to prevent overlapping while maintaining position */
@media (max-width: 767.98px) {
    .industry-label {
        padding: 4px 8px !important;
        font-size: 0.55rem !important;
        border-radius: 12px !important;
        border-width: 0.5px !important;
    }
    .pulsing-dot-indicator {
        width: 5px !important;
        height: 5px !important;
        margin-right: 4px !important;
    }
}

/* Testimonial card styles for Figma section 6 */
.testimonial-card {
    background-color: #f2f0f9;
    border-radius: 20px;
    padding: 35px;
    border: none;
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
}

.testimonial-card p {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #121212;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1 !important;
}

.testimonial-card h4 {
    font-family: 'Lexend', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: #121212 !important;
}

.testimonial-card span {
    font-family: 'Lexend', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: #909090 !important;
}

.testimonial-card hr {
    border-top: 1px solid rgba(30, 27, 75, 0.1) !important;
    opacity: 1;
}

.slider-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.2s ease;
    cursor: pointer;
}

.slider-arrow-btn.active,
.slider-arrow-btn:hover {
    border-color: #3b42c4;
    color: #3b42c4;
    background: #ffffff;
}

/* CTA Gradient box for Figma section 7 */
.cta-section {
    margin: 0 15px 30px 15px;
    padding: 0 !important;
}
.cta-gradient-box {
    border-radius: 24px;
    padding: 80px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* CTA background image — full coverage, full opacity, no wash */
.cta-watermark-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    border-radius: 24px;
}

/* Admin Dashboard Elements - Clean & Minimal Layout */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: #0f172a;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1020;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.admin-sidebar-brand {
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 8px;
}

.admin-sidebar-brand img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.admin-sidebar-brand span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.admin-nav {
    list-style: none;
    padding: 8px 12px;
    margin: 0;
    flex: 1;
}

.admin-nav .nav-item {
    margin-bottom: 2px;
}

.admin-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.admin-sidebar .nav-link i {
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.admin-sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.admin-sidebar .nav-link.active {
    background: linear-gradient(135deg, rgba(54, 84, 200, 0.35), rgba(54, 84, 200, 0.18));
    color: #ffffff;
    border-color: rgba(54, 84, 200, 0.5);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(54, 84, 200, 0.2);
}

.admin-sidebar .nav-link.active i {
    color: #7b9eff;
}

.admin-sidebar-footer {
    padding: 16px 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-sidebar-footer .user-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    padding: 0 4px;
}

.admin-sidebar-footer .user-info strong {
    color: rgba(255, 255, 255, 0.75);
}

.admin-sidebar-footer .btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 0.7);
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.admin-sidebar-footer .btn-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.6);
    color: #ef4444;
}

/* ---- Main Content ---- */
.admin-main {
    margin-left: 260px;
    flex: 1;
    min-height: 100vh;
    background: #f1f5f9;
    padding: 44px 52px;
}

/* ---- Top bar in main ---- */
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.admin-topbar h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.admin-topbar .sub {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* ---- Metric Cards ---- */
.metric-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025);
    transition: all 0.25s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.metric-card .icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* ---- Panel Cards ---- */
.admin-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}

/* ---- Funnel / Attribution ---- */
.funnel-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.funnel-stage:hover {
    border-color: #e2e8f0;
    background: #f1f5f9;
}

.progress-bar-custom {
    height: 5px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3654c8, #6366f1);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* ---- Skeletons ---- */
@keyframes skeleton-loading {
    0%   { background-color: #f1f5f9; }
    50%  { background-color: #e2e8f0; }
    100% { background-color: #f1f5f9; }
}
.skeleton {
    animation: skeleton-loading 1.2s infinite ease-in-out;
    border-radius: 8px;
    display: inline-block;
}
.skeleton-number  { height: 38px; width: 45%; margin-bottom: 8px; }
.skeleton-row-left  { height: 18px; width: 60%; display: block; }
.skeleton-row-right { height: 18px; width: 20%; display: block; }

/* ---- Admin Table ---- */
.admin-main .table {
    border-collapse: separate;
    border-spacing: 0 6px;
}
.admin-main .table tr { background: #ffffff; }
.admin-main .table th {
    border: none;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: #94a3b8;
    padding: 10px 18px;
    font-weight: 600;
}
.admin-main .table td {
    border: none;
    padding: 14px 18px;
    vertical-align: middle;
    background: #ffffff;
}
.admin-main .table tr td:first-child,
.admin-main .table tr th:first-child { border-radius: 10px 0 0 10px; }
.admin-main .table tr td:last-child,
.admin-main .table tr th:last-child  { border-radius: 0 10px 10px 0; }

/* ---- SPA content fade ---- */
#spa-content { transition: opacity 0.15s ease; }
#spa-content.loading { opacity: 0; }

/* ---- Glass card for older references ---- */
.admin-main .glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.025);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}
.admin-main .glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

/* ---- Mobile admin header ---- */
.mobile-admin-header {
    display: none;
}

/* ---- Overlay for mobile sidebar ---- */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1019;
}
.sidebar-overlay.show { display: block; }

/* ---- Mobile breakpoint ---- */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
        z-index: 2000;
    }
    .admin-sidebar.show {
        transform: translateX(0);
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.2);
    }
    .admin-main {
        margin-left: 0;
        padding: 90px 18px 40px;
    }
    .mobile-admin-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #0f172a;
        padding: 14px 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .mobile-admin-header img {
        height: 26px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }
    .mobile-admin-header .btn-toggle {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.25rem;
        padding: 0;
        line-height: 1;
        cursor: pointer;
    }
}




/* Explicit size boundaries to guarantee WebGL bounds calculation */
#globe-3d-container {
    height: 500px !important;
    position: relative;
    width: 100%;
}
#globe-canvas-wrapper {
    height: 500px !important;
    min-height: 500px !important;
    width: 100%;
    display: block;
}

/* Footer Silent Watermark Spacing Adjustment — superseded by footer-watermark-zone */
/* CRM Kanban Board Premium Styles */
.kanban-board {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 24px 4px;
    min-height: calc(100vh - 220px);
    align-items: flex-start;
}
.kanban-col {
    flex: 0 0 310px;
    width: 310px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 240px);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.25s ease;
}
.kanban-col:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.025);
    border-color: #cbd5e1;
}
.kanban-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}
.kanban-count-badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    background-color: #f1f5f9;
    color: #475569;
    transition: all 0.2s ease;
}
.kanban-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    min-height: 250px;
    padding: 4px;
    transition: all 0.25s ease;
    border-radius: 12px;
}
.kanban-list.drag-over {
    background-color: rgba(99, 102, 241, 0.03) !important;
    outline: 2px dashed #6366f1;
    outline-offset: 2px;
}
.kanban-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
    cursor: grab;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}
.kanban-card:active {
    cursor: grabbing;
    transform: scale(0.98);
}
.kanban-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    border-color: #6366f1;
}
.kanban-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.kanban-card-meta {
    font-size: 0.78rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}
.kanban-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 8px;
    margin-top: 12px;
    letter-spacing: 0.02em;
}
.tag-service {
    background-color: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.kanban-col:nth-child(1) .kanban-count-badge {
    background-color: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
}
.kanban-col:nth-child(2) .kanban-count-badge {
    background-color: rgba(245, 158, 11, 0.08);
    color: #d97706;
}
.kanban-col:nth-child(3) .kanban-count-badge {
    background-color: rgba(34, 197, 94, 0.08);
    color: #16a34a;
}
.kanban-col:nth-child(4) .kanban-count-badge {
    background-color: rgba(239, 68, 68, 0.08);
    color: #dc2626;
}

/* Blog Management & Medium Editor Canvas Styles */
.medium-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 40px 20px;
}
.medium-title-input {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    border: none;
    outline: none;
    width: 100%;
    margin-bottom: 12px;
    color: #242424;
    background: transparent;
}
.medium-title-input::placeholder {
    color: #b3b3b3;
}
.medium-summary-input {
    font-size: 1.25rem;
    border: none;
    outline: none;
    width: 100%;
    margin-bottom: 30px;
    color: #6b7280;
    background: transparent;
}
.medium-summary-input::placeholder {
    color: #c3c3c3;
}
.ql-toolbar.ql-snow {
    border: none !important;
    border-bottom: 1px solid #f2f2f2 !important;
    background: #fafafa;
    position: sticky;
    top: 57px;
    z-index: 99;
    padding: 12px 30px !important;
}
.ql-container.ql-snow {
    border: none !important;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #242424;
}
.ql-editor {
    padding: 20px 0 !important;
    min-height: 400px;
}
.ql-editor.ql-blank::before {
    left: 0 !important;
    font-style: normal;
    color: #b3b3b3;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
}
.medium-header {
    border-bottom: 1px solid #f2f2f2;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.btn-publish {
    background-color: #1a8917;
    color: #ffffff;
    border: none;
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}
.btn-publish:hover {
    background-color: #156f11;
    color: #ffffff;
}
.filepond--root {
    margin-bottom: 0;
}
.skeleton-card {
    height: 160px;
    width: 100%;
}
.skeleton-title {
    height: 18px;
    width: 80%;
    margin-bottom: 8px;
}
.skeleton-meta {
    height: 12px;
    width: 40%;
}

@media (max-width: 991.98px) {
    .hero-section {
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    h1,
    .hero-title,
    .hero-section h1 {
        font-size: 36px !important;
    }
    
    .home-hero-title {
        font-size: 44px !important;
    }
    
    #arukahNavbarOffcanvas {
        width: 280px !important;
        background-color: #ffffff;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .offcanvas.show#arukahNavbarOffcanvas {
        transform: translateX(0);
    }
    
    #arukahNavbarOffcanvas .nav-link {
        padding: 12px 20px !important;
        border-radius: 0 50px 50px 0;
        margin-right: 15px;
        color: #3f3f46 !important;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
    }
    
    #arukahNavbarOffcanvas .nav-link.active,
    #arukahNavbarOffcanvas .nav-link:hover {
        background-color: rgba(79, 70, 229, 0.08) !important;
        color: #4f46e5 !important;
        font-weight: 600 !important;
    }
    
    #arukahNavbarOffcanvas .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        padding-left: 20px;
        background-color: transparent !important;
        display: none;
        position: static !important;
        float: none !important;
    }
    
    #arukahNavbarOffcanvas .dropdown-menu.show {
        display: block !important;
    }
    
    #arukahNavbarOffcanvas .dropdown-item {
        padding: 10px 20px !important;
        border-radius: 0 50px 50px 0;
        margin-right: 15px;
        color: #71717a !important;
        transition: all 0.2s ease;
    }
    
    #arukahNavbarOffcanvas .dropdown-item.active,
    #arukahNavbarOffcanvas .dropdown-item:hover {
        background-color: rgba(79, 70, 229, 0.05) !important;
        color: #4f46e5 !important;
    }
    
    .cta-section {
        margin: 0 0 30px 0 !important;
    }
    
    .cta-gradient-box {
        border-radius: 0 !important;
    }
    .cta-watermark-img {
        border-radius: 0 !important;
    }
}

/* Footer menu links styling */
footer ul li {
    line-height: 2.0 !important;
    margin-bottom: 12px !important;
}

footer ul li a {
    line-height: 2.0 !important;
}

/* Premium Form Inputs inside Modal */
.premium-input {
    background-color: #f4f4f5 !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    color: #121212 !important;
    transition: all 0.2s ease !important;
}

.premium-input::placeholder {
    color: #909090 !important;
}

.premium-input:focus {
    background-color: #ffffff !important;
    border-color: #3654C8 !important;
    box-shadow: 0 0 0 4px rgba(54, 84, 200, 0.1) !important;
}

/* Payment Tab Selector buttons */
.btn-payment-tab {
    background-color: #ffffff !important;
    border: 1px solid #e4e4e7 !important;
    border-radius: 10px !important;
    color: #71717a !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 12px 10px !important;
    transition: all 0.2s ease !important;
}

.btn-payment-tab.active {
    background-color: rgba(54, 84, 200, 0.08) !important;
    border-color: #3654C8 !important;
    color: #3654C8 !important;
    font-weight: 600 !important;
}

/* Blockquotes typography */
.blockquote,
.blockquote p,
blockquote {
    font-family: 'Lexend', sans-serif !important;
}

/* Prevent underline on icon links and icons inside links */
a,
a i,
a span,
a svg,
a:hover,
a:hover i,
a:hover span,
a:hover svg {
    text-decoration: none !important;
}

/* Home Page Accordion specific overrides */
.home-accordion .accordion-custom-btn {
    background-color: transparent !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.accordion-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background-color: #F2ECFA;
    margin-right: 14px;
    transition: transform 0.2s ease;
}

.accordion-icon-wrap i.ph {
    font-size: 1.1rem;
    color: #3654C8;
}

.home-accordion .accordion-custom-btn:hover .accordion-icon-wrap {
    transform: scale(1.05);
}

/* CTA Section — watermark now rendered as background-image layer, no override needed */

/* ── Footer Layout ───────────────────────────────────────────── */
.footer-main {
    background-color: #1a2c6b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Content zone: normal padding, never touched by watermark */
.footer-content-zone {
    padding-top: 56px;
    padding-bottom: 56px;
    position: relative;
    z-index: 2;
}

/* Watermark zone: its own dedicated row, sits fully below content */
.footer-watermark-zone {
    width: 100%;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin-top: 16px;
    margin-bottom: 0;
    overflow: hidden;
}

.footer-watermark-img {
    display: block;
    width: 100%;
    height: auto;
    /* pull up 30px from the translated position */
    transform: translateY(calc(18% - 30px));
    margin-bottom: 30px;
}
