/* ==================================================
   RESET
================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: var(--bs-font-secondary);
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    line-height: 1.6;
    color: var(--bs-white);
    background: var(--bs-secondary);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

p {
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    color: var(--bs-white);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Target the autofill state specifically */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* This creates a white or transparent inset shadow that covers the blue/yellow background */
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;

    /* If you truly want it transparent to show a background image/gradient behind it: */
    /* transition: background-color 5000s ease-in-out 0s; */

    /* Sets the text color since autofill often forces it to black */
    -webkit-text-fill-color: var(--bs-white) !important;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bs-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: 10px;
}

/* ==================================================
   VARIABLES
================================================== */

:root {
    --bs-primary: #1759A5;
    --bs-secondary: #131337;
    --bs-white: #ffffff;
    --bs-black: #000000;
    --bs-gray: #747474;

    --bs-font-primary: "Inter", sans-serif;
    --bs-font-secondary: "Poppins", sans-serif;
    --bs-font-tertiary: "Urbanist", sans-serif;




    /* Container */
    --container-width: 1600px;
    --container-padding: 15px;

    /* Transition */
    --transition: 0.5s ease-in-out;

}


/* ==========================================
   BUTTON BASE
========================================== */

.primary-btn {
    position: relative;
    font-size: clamp(0.875rem, 0.6078rem + 0.431vw, 1.125rem);
    color: #fff;
    background: linear-gradient(90deg, #7317A5 0%, #00B3FB 98.08%);
    border-radius: 10px;
    height: 56px;
    line-height: 56px;
    display: inline-block;
    padding: 0px 20px;
    transition: 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
    min-width: max-content;
    border-radius: 50px;
    background-position: left;
}

.primary-btn svg {
    margin-left: 8px;
    transition: 0.3s ease-in-out;
}

.primary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.6s ease;
}

/* .primary-btn:hover svg {
    transform: rotate(60deg);
} */

.primary-btn:hover::after {
    left: 120%;
}

.primary-btn:hover::before {
    width: 160%;
}

.primary-btn:hover {
    color: #fff;
    background: linear-gradient(90deg, #00B3FB 0%, #7317A5 98.08%);
    background-position: right;
    background-size: 200% 100%;
}


.secondary-btn {
    position: relative;
    font-size: clamp(0.875rem, 0.6078rem + 0.431vw, 1.125rem);
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 10px;
    height: 56px;
    line-height: 56px;
    display: inline-block;
    padding: 0px 20px;
    overflow: hidden;
    z-index: 1;
    width: max-content;
    transition: all 0.4s ease-in-out;
    border-radius: 50px;
}

.secondary-btn:hover {
    color: #fff;
}

/* Gradient background pseudo-element */
.secondary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00B3FB 0%, #7317A5 98.08%);
    z-index: -1;
    /* keep it behind the text */
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    /* match button rounding */
}

/* Hover: slide in gradient */
.secondary-btn:hover::before {
    left: 0;
}

/* SVG inside button */
.secondary-btn svg {
    margin-left: 8px;
    transition: transform 0.4s ease, margin-left 0.4s ease;
}

/* Hover: rotate/move SVG */
/* .secondary-btn:hover svg {
    transform: rotate(30deg) translateX(5px);
} */

/* ==========================================
     SECONDARY BUTTON
  ========================================== */

.btn-secondary {
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.btn-secondary:hover {
    background: var(--main-color);
    color: var(--white);
}

.btn-secondary:active {
    transform: scale(.98);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--gray);
    outline-offset: 2px;
}

.btn-secondary:disabled {
    opacity: .6;
    pointer-events: none;
}

/* ==========================================
     BUTTON ICONS
  ========================================== */

.btn svg {
    transition: var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================
     CONTAINER
  ========================================== */

.container {
    max-width: var(--container-width);
}

/* ==========================================
   RENDER OPTIMIZATION
========================================== */

/* Defer layout/paint work for below-the-fold sections on supporting browsers */
.rating-section,
.services-section,
.technology-section,
.project-cta-section,
.portfolio-section,
.testimonials-section,
.roadmap-software,
.difference-markting,
.faq-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}


/* ==========================================
     MAIN TITLE
  ========================================== */

.main-title-h1 {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(1.75rem, 1.35rem + 2vw, 3.75rem);
    line-height: 1.2;
    font-weight: 700;
    /* letter-spacing: -2px; */
    margin-bottom: 20px;
    text-transform: capitalize;
}


.main-title-h2 {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(1.5625rem, 1.1875rem + 1.875vw, 3.4375rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.main-title-h3 {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(1.4375rem, 1.1rem + 1.6875vw, 3.125rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}


.main-title-h4 {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.main-title-h5 {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.main-title-h6 {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(1rem, 0.875rem + 0.625vw, 1.625rem);
    line-height: 1.2;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.short-title {
    font-family: var(--bs-font-tertiary);
    font-size: clamp(0.9375rem, 0.85rem + 0.4375vw, 1.375rem);
    line-height: 1.2;
    font-weight: 400;
    color: var(--bs-gray);
    margin-bottom: 20px;
}

.text-p {
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    color: var(--bs-white);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.text-gray {
    color: var(--bs-gray) !important;
}

/* ==========================================
     PADDING
  ========================================== */

.p-100 {
    padding: 100px 0;
}

.p-50 {
    padding: 50px 0;
}


/* ==========================================
     GRADIENT TEXT
  ========================================== */

.gradient-text {
    background: linear-gradient(90deg, #7317A5 0%, #00B3FB 98.08%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Urbanist", sans-serif;
    /* Apply the animation */
    animation: shine 4s linear infinite;
    background-size: 200% auto;
}

/* Define the movement */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gradient-text {
        animation: none;
        background-size: 100% auto;
    }
}


/* ==========================================
     HEADER
  ========================================== */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: var(--bs-secondary);
    border-bottom: 1px solid #ffffff42;
    transition: var(--transition);
}

.site-header .navbar {
    padding: 15px 0px;
}

.header-logo {
    max-height: 70px;
    width: auto;
}

/* Nav links */
.hdr-link {
    font-family: var(--bs-font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: var(--bs-white) !important;
    padding: 6px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: color 0.3s ease !important;
}

.hdr-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.hdr-link:hover {
    color: #fff !important;
}

.hdr-link:hover::after {
    transform: scaleX(1);
}

/* Phone link in header */
.hdr-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-white);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.hdr-phone:hover {
    color: var(--bs-white);
}

/* Header CTA button */
.hdr-cta {
    height: 44px !important;
    line-height: 44px !important;
    font-size: 14px !important;
    padding: 0 22px !important;
}

/* ==========================================
     CUSTOM HAMBURGER
  ========================================== */

.nav-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-toggler:hover {
    background: rgba(255, 255, 255, 0.13);
}

.toggler-bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.toggler-bar:nth-child(2) {
    width: 70%;
}

.toggler-bar:nth-child(3) {
    width: 50%;
}

.nav-toggler:hover .toggler-bar {
    width: 100% !important;
}

.nav-toggler.is-open .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100% !important;
}

.nav-toggler.is-open .toggler-bar:nth-child(2) {
    opacity: 0;
    width: 100% !important;
}

.nav-toggler.is-open .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100% !important;
}

/* ==========================================
     MOBILE MENU (OFFCANVAS)
  ========================================== */

.mobile-menu {
    width: 300px !important;
    background: #0d0d2e;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-close-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 81px);
    padding: 30px 24px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--bs-font-tertiary);
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover {
    color: #fff;
    padding-left: 8px;
}

.mnl-num {
    font-family: var(--bs-font-primary);
    font-size: 12px;
    font-weight: 600;
    color: #00B3FB;
    background: rgba(0, 179, 251, 0.12);
    border-radius: 4px;
    padding: 8px 8px;
    line-height: 1;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mmf-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--bs-white);
    transition: color 0.3s ease;
}

.mmf-contact:hover {
    color: var(--bs-white);
}


/* ==========================================
     HERO SECTION
  ========================================== */

.hero-section {
    position: relative;
    min-height: calc(100vh - 72px);
    background-color: var(--bs-secondary);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-form-box {
    contain: layout paint;
}

/* Trust badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #ffffff42;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bs-white);
    margin-bottom: 20px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00B3FB;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(0, 179, 251, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(0, 179, 251, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 179, 251, 0.15);
    }
}

.hero-desc {
    max-width: 640px;
}

/* Hero CTA buttons */
.hero-btn-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 40px;
}

.hero-cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    height: 54px !important;
    line-height: 1 !important;
    padding: 0 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 32px rgba(115, 23, 165, 0.4);
}

.hero-watch-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-white);
    transition: color 0.3s ease;
}

.hero-watch-link:hover {
    color: #fff;
}

.hero-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.hero-watch-link:hover .hero-play-btn {
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    transform: scale(1.1);
    border-color: transparent;
    border: none;
}

/* ==========================================
     HERO FORM
  ========================================== */

.hero-form-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ffffff42;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px 32px;
    overflow: hidden;
}

.hero-form-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(115, 23, 165, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.hero-form-title {
    font-family: var(--bs-font-primary);
    font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem);
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 6px;
}

.hero-form-sub {
    font-size: 13px;
    color: var(--bs-white);
    margin-bottom: 22px;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.hero-form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--bs-white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--bs-white);
    font-family: var(--bs-font-secondary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-form-input::placeholder {
    color: var(--bs-white);
}

.hero-form-input:focus {
    border-color: rgba(0, 179, 251, 0.6);
    background: rgba(0, 179, 251, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 179, 251, 0.1);
}

.hero-form-select-wrapper {
    position: relative;
}

.hero-form-select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300B3FB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.hero-form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    width: 100%;
}

.hero-form-select option {
    background: #0d0d2e;
    color: var(--bs-white);
}

.hero-form-textarea {
    resize: none;
    line-height: 1.6;
}

.hero-form-submit {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px !important;
    line-height: 1 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border: none;
    cursor: pointer;
    border-radius: 50px !important;
    box-shadow: 0 6px 24px rgba(115, 23, 165, 0.35);
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
}

.hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(115, 23, 165, 0.5) !important;
}

/* ==========================================
     RATING SECTION
  ========================================== */

.rating-section {
    position: relative;
    overflow: hidden;
}

.rating-section .container {
    position: relative;
    z-index: 2;
}

.rating-section .row {
    align-items: stretch;
}

.rating-section .col-12 {
    display: flex;
}

.rating-section .rating_box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--bs-primary);
    border-radius: 20px;
    padding: 28px 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.rating-section .rating_box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(115, 23, 165, 0.12), rgba(0, 179, 251, 0.06));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.rating-section .rating_box:hover::after {
    opacity: 1;
}

.rating-section .rating_box:hover {
    box-shadow: 0 12px 40px rgba(0, 179, 251, 0.14), 0 0 0 1px rgba(115, 23, 165, 0.18);
    transform: translateY(-5px);
}

.rating-section .rating-svg {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(115, 23, 165, 0.22), rgba(0, 179, 251, 0.14));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 179, 251, 0.14);
    transition: box-shadow 0.35s ease;
}

.rating-section .rating_box:hover .rating-svg {
    box-shadow: 0 0 20px rgba(0, 179, 251, 0.22);
}

.rating-section .rating-svg svg {
    width: 44px;
    height: auto;
}

.rating-section .rating-content {
    margin-left: 0;
    text-align: left;
}

.rating-section .rating-content .rating-num {
    font-size: clamp(34px, 3.5vw, 54px);
    line-height: 1.1;
    margin-bottom: 5px;
    font-weight: 800;
    background: linear-gradient(90deg, #7317A5 0%, #00B3FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-section .rating-content p {
    color: var(--bs-black);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==========================================
   SERVICES SECTION
========================================== */

.services-section {
    background: var(--bs-secondary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(115, 23, 165, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 179, 251, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .services-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #ffffff42;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-section .services-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.services-section .services-box:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 179, 251, 0.4);
    box-shadow: 0 16px 48px rgba(0, 179, 251, 0.12), 0 0 0 1px rgba(115, 23, 165, 0.15);
}

.services-section .services-box:hover::before {
    opacity: 1;
}

.services-section .services-box .icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(115, 23, 165, 0.35);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.services-section .services-box:hover .icon {
    box-shadow: 0 10px 30px rgba(0, 179, 251, 0.4);
    transform: scale(1.05);
}

.services-section .services-box .icon svg {
    width: 32px;
    height: 32px;
}

.services-section .services-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.services-section .services-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin: 0;
}

/* ==========================================
   TECHNOLOGY SECTION
========================================== */

.technology-section .technology_item .svg_icon {
    align-items: center;
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    border-radius: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 0 auto 40px;
    text-align: center;
    width: 80px;
}

.technology-section .technology_item .svg_icon.web_text {
    color: var(--bs-white);
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

.technology_item h6 {
    height: 63px;
}


/* ==========================================
   CTA SECTION
========================================== */
.project-cta-section {
    background: var(--bs-secondary);
}

.project-cta-box-wrap {
    border-radius: 24px;
    aspect-ratio: 2.9574861368;
    background-image: url('../images/brand-unstoppable-cta.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 0 0 60px;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */

.testimonials-section {
    background: var(--bs-secondary);
    position: relative;
    overflow: hidden;
}

.testi-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.testi-orb-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(115, 23, 165, 0.18) 0%, transparent 70%);
}

.testi-orb-2 {
    width: 420px;
    height: 420px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 179, 251, 0.14) 0%, transparent 70%);
}

/* ── Swiper wrapper ── */
.testi-swiper-wrap {
    position: relative;
    padding: 0 0 20px;
}

.testimonials-swiper {
    overflow: hidden;
    padding-bottom: 8px;
}

/* ── Card ── */
.testi-card {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    padding: 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 20px 20px 0 0;
}

.testi-card:hover {
    border-color: var(--bs-primary);
}

.testi-card:hover::before {
    opacity: 1;
}

/* ── Card top row ── */
.testi-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Avatar ── */
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bs-font-tertiary);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.testi-avatar-blue {
    background: linear-gradient(135deg, #1759A5, #00B3FB);
}

.testi-avatar-purple {
    background: linear-gradient(135deg, #7317A5, #a855f7);
}

.testi-avatar-cyan {
    background: linear-gradient(135deg, #00B3FB, #0ea5e9);
}

.testi-avatar-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.testi-avatar-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.testi-avatar-pink {
    background: linear-gradient(135deg, #db2777, #ec4899);
}

/* ── Name & time ── */
.testi-info {
    flex: 1;
}

.testi-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.3;
}

.testi-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Google G icon ── */
.testi-g-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ── Small stars ── */
.testi-stars-sm {
    display: flex;
    align-items: center;
    gap: 3px;
}

.testi-stars-sm svg {
    width: 16px;
    height: 16px;
    fill: #F4B942;
}

/* ── Review text ── */
.testi-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* ── Navigation arrows ── */
.testi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    backdrop-filter: blur(8px);
    border: none;
}

.testi-nav-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.testi-nav-btn:hover {
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.testi-btn-prev {
    left: -24px;
}

.testi-btn-next {
    right: -24px;
}

.testi-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Pagination ── */
.testi-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--bs-secondary);
    border-radius: 50px;
    opacity: 1;
    transition: background 0.3s ease, width 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    width: 28px;
    border-radius: 50px;
}

/* ==========================================
   FAQ SECTION
========================================== */

.faq-section {
    background: var(--bs-secondary);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(115, 23, 165, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 179, 251, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-btn {
    background: transparent !important;
    color: var(--bs-white) !important;
    font-size: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
    font-weight: 600;
    padding: 22px 0;
    padding-right: 48px;
    box-shadow: none !important;
    border-radius: 0 !important;
    line-height: 1.4;
    position: relative;
    transition: color 0.3s ease;
}

.faq-btn:hover {
    color: #00B3FB !important;
}

.faq-btn.collapsed {
    color: rgba(255, 255, 255, 0.85) !important;
}

.faq-btn:not(.collapsed) {
    color: #00B3FB !important;
}

/* Custom +/- icon replacing Bootstrap chevron */
.faq-btn::after {
    display: none;
}

.faq-btn::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 179, 251, 0.1);
    border: 1px solid rgba(0, 179, 251, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 1v12M1 7h12' stroke='%2300B3FB' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.faq-btn:not(.collapsed)::before {
    background-color: rgba(0, 179, 251, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M1 7h12' stroke='%2300B3FB' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    border-color: rgba(0, 179, 251, 0.5);
}

.faq-body {
    padding: 0 0 22px 0;
    padding-right: 48px;
    color: var(--bs-white);
}


/* roadmap section css start */
.roadmap-container {
    height: 670px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.roadmap-software .roadmap .roadmap-box {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.roadmap-software .roadmap .roadmap-box .roadmap-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 65px 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-software .roadmap .roadmap-box .roadmap-flex:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 16px 48px rgba(0, 179, 251, 0.12), 0 0 0 1px rgba(115, 23, 165, 0.15);
}

.roadmap-software .roadmap .roadmap-box .roadmap-flex .left-div {
    max-width: 60%;
}

.roadmap-software .roadmap .roadmap-box .roadmap-flex .left-div .num {
    font-weight: 800;
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.roadmap-software .roadmap .roadmap-box .roadmap-flex .icon {
    background: linear-gradient(135deg, #7317A5 0%, #00B3FB 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

.roadmap-software .roadmap .roadmap-box .roadmap-flex .icon svg {
    filter: brightness(0) invert(1);
}

/* roadmap section css end */

.difference-markting img {
    margin-top: 20px;
}


.difference-markting .difference-scroll {
    height: 850px;
    overflow: auto;
    scrollbar-width: none;
    position: relative;
    padding: 0 30px 0 30px;
}

.difference-markting .difference-scroll .digital-difference-main {
    position: relative;
}

.difference-markting .difference-scroll .digital-difference-main:before {
    content: "";
    position: absolute;
    left: 26px;
    top: 0px;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, #7317A5, #00B3FB);
}


.difference-markting .difference-scroll .digital-difference-main .digital-item .digital-flex {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.difference-markting .difference-scroll .digital-difference-main .digital-item .digital-flex .digital-num {
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 7%;
    position: relative;
}

.difference-markting .difference-scroll .digital-difference-main .digital-item .digital-flex .digital-num::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 62px;
    width: 62px;
    border: 1px solid rgba(115, 23, 165, 0.5);
    border-radius: 50px;
}

.difference-markting .difference-scroll .digital-difference-main .digital-item .digital-flex .digital-num-box {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    height: 100%;
    padding: 40px 25px;
    border-radius: 10px;
    flex: 0 0 93%;
    max-width: 695px;
    margin-bottom: 30px;
}

.difference-markting .difference-scroll .digital-difference-main .digital-item .digital-flex .digital-num-box:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 16px 48px rgba(0, 179, 251, 0.12), 0 0 0 1px rgba(115, 23, 165, 0.15);
}

.difference-markting .difference-scroll .digital-difference-main .digital-item .digital-flex .digital-num-box svg {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}


/* ===================================================
   SITE FOOTER
   =================================================== */
.site-footer {
    background: #0c0c1e;
    position: relative;
    overflow: hidden;
}

/* Ambient orbs */
.footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}


@media (max-width: 991px) {

    /* Mobile performance pass: remove expensive paint/blur effects */
    .portfolio-orb,
    .testi-orb,
    .footer-orb,
    .hero-form-glow {
        display: none !important;
    }

    .testi-card,
    .hero-badge {
        backdrop-filter: none;
    }

    .gradient-text {
        animation: none;
        background-size: 100% auto;
    }

    .rating-section,
    .services-section,
    .technology-section,
    .project-cta-section,
    .portfolio-section,
    .testimonials-section,
    .roadmap-software,
    .difference-markting,
    .faq-section,
    .site-footer {
        contain-intrinsic-size: 700px;
    }
}

.footer-orb-1 {
    width: 480px;
    height: 480px;
    top: -100px;
    left: -160px;
    background: radial-gradient(circle, rgba(115, 23, 165, 0.12) 0%, transparent 70%);
}

.footer-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 0;
    right: -120px;
    background: radial-gradient(circle, rgba(0, 179, 251, 0.10) 0%, transparent 70%);
}

/* ---- CTA Band ---- */
.footer-cta-band {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(115, 23, 165, 0.25) 0%, rgba(0, 179, 251, 0.15) 100%);
    border-top: 1px solid rgba(115, 23, 165, 0.35);
    border-bottom: 1px solid rgba(0, 179, 251, 0.2);
    padding: 60px 0;
}

.footer-cta-heading {
    font-family: var(--bs-font-tertiary);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.footer-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 480px;
}

.footer-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    height: 52px;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    color: #fff;
    font-family: var(--bs-font-tertiary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-cta-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(115, 23, 165, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.footer-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: var(--bs-font-tertiary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-cta-btn-outline:hover {
    border-color: rgba(0, 179, 251, 0.6);
    box-shadow: 0 0 20px rgba(0, 179, 251, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

/* ---- Main Footer ---- */
.footer-main {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand Column */
.footer-logo-img {
    max-height: 70px;
    margin-bottom: 22px;
    display: block;
}

.footer-brand-text {
    font-size: 14px;
    color: var(--bs-white);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col-title {
    font-family: var(--bs-font-tertiary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--bs-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease, gap 0.25s ease;
}

.footer-links a::before {
    content: '›';
    font-size: 16px;
    color: #7317A5;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
    gap: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--bs-white);
    line-height: 1.6;
}

.footer-contact-list a {
    color: var(--bs-white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: var(--bs-white);
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(115, 23, 165, 0.3), rgba(0, 179, 251, 0.2));
    border: 1px solid rgba(115, 23, 165, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B3FB;
    margin-top: 2px;
}

/* Newsletter */
.footer-newsletter-label {
    font-size: 13px;
    color: var(--bs-white);
    margin-bottom: 10px;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    overflow: hidden;
    padding: 4px 4px 4px 18px;
    transition: border-color 0.3s ease;
}

.footer-newsletter-form:focus-within {
    border-color: var(--bs-primary);
}

.footer-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--bs-white);
    min-width: 0;
}

.footer-newsletter-input::placeholder {
    color: var(--bs-white);
}

.footer-newsletter-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    border: none;
    border-radius: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(115, 23, 165, 0.5);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 22px 0;
}

.footer-copyright {
    font-size: 14px;
    color: var(--bs-white);
    margin: 0;
}

.footer-copyright .gradient-text {
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--bs-white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--bs-white);
}

/* ===== FOOTER END ===== */


/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.portfolio-section {
    background: var(--bs-secondary);
    position: relative;
    overflow: hidden;
}

.portfolio-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.portfolio-orb-1 {
    width: 560px;
    height: 560px;
    top: -200px;
    right: -180px;
    background: radial-gradient(circle, rgba(115, 23, 165, 0.13) 0%, transparent 70%);
}

.portfolio-orb-2 {
    width: 440px;
    height: 440px;
    bottom: -100px;
    left: -140px;
    background: radial-gradient(circle, rgba(0, 179, 251, 0.10) 0%, transparent 70%);
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

/* -- SHOWCASE LIST -- */
/* Slider controls row */
.pf-slider-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.pf-slider-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pf-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pf-nav-btn:hover {
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    border-color: transparent;
    transform: scale(1.08);
}

.pf-pagination {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    min-width: 64px;
    text-align: center;
    letter-spacing: 1px;
}

.pf-pagination .swiper-pagination-current {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slider clip */
.pf-slider-clip {
    overflow: hidden;
    border-radius: 24px;
}

.portfolio-swiper {
    overflow: visible !important;
}

.pf-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pf-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 460px;
    position: relative;
    padding: 60px 0;
    transition: background 0.4s ease;
}

.pf-showcase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, #7317A5, #00B3FB, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pf-showcase-item:hover::before {
    opacity: 1;
}

.pf-showcase-item:hover {
    background: rgba(255, 255, 255, 0.015);
}

.pf-showcase-reverse {
    direction: rtl;
}

.pf-showcase-reverse .pf-showcase-content,
.pf-showcase-reverse .pf-showcase-visual {
    direction: ltr;
}

/* -- VISUAL SIDE -- */
.pf-showcase-visual {
    position: relative;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 24px;
}

.pf-sv-inner {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glow background */
.pf-sv-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pf-sv-1 {
    background: linear-gradient(135deg, #14042a 0%, #0a1a40 60%, #0c2a3a 100%);
}

.pf-sv-2 {
    background: linear-gradient(135deg, #060e22 0%, #14042a 60%, #060e22 100%);
}

.pf-sv-3 {
    background: linear-gradient(135deg, #041828 0%, #0a1a40 60%, #14042a 100%);
}

.pf-sv-4 {
    background: linear-gradient(135deg, #14042a 0%, #041828 60%, #0a1a40 100%);
}

.pf-sv-glow {
    background: radial-gradient(ellipse at 50% 50%, rgba(115, 23, 165, 0.2) 0%, transparent 70%);
}

.pf-sv-glow-2 {
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 179, 251, 0.18) 0%, transparent 70%);
}

.pf-sv-glow-3 {
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 179, 251, 0.15) 0%, rgba(115, 23, 165, 0.1) 60%, transparent 100%);
}

.pf-sv-glow-4 {
    background: radial-gradient(ellipse at 50% 50%, rgba(115, 23, 165, 0.22) 0%, transparent 70%);
}

/* Screen frame */
.pf-sv-screen {
    position: relative;
    z-index: 1;
    width: 78%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    overflow: hidden;
}

.pf-sv-topbar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-sv-topbar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
    background: rgba(255, 255, 255, 0.15);
}

.pf-sv-topbar span:first-child {
    background: rgba(255, 100, 100, 0.5);
}

.pf-sv-topbar span:nth-child(2) {
    background: rgba(255, 200, 50, 0.5);
}

.pf-sv-topbar span:nth-child(3) {
    background: rgba(50, 200, 100, 0.5);
}

.pf-sv-nav {
    height: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pf-sv-hero-1 {
    height: 80px;
    background: linear-gradient(135deg, rgba(115, 23, 165, 0.5), rgba(0, 179, 251, 0.45));
    margin: 10px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.pf-sv-hero-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, rgba(0, 179, 251, 0.4), rgba(115, 23, 165, 0.3));
    clip-path: polygon(0 60%, 30% 20%, 60% 50%, 100% 0, 100% 100%, 0 100%);
}

.pf-sv-cards-row {
    display: flex;
    gap: 6px;
    padding: 0 10px 10px;
}

.pf-sv-card {
    flex: 1;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* phone mockup overlay */
.pf-sv-phone {
    position: absolute;
    right: -10px;
    bottom: -10px;
    z-index: 2;
    width: 90px;
    background: rgba(20, 5, 40, 0.95);
    border: 1.5px solid rgba(115, 23, 165, 0.5);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -8px -8px 30px rgba(0, 0, 0, 0.5);
}

.pf-sv-phone-screen {
    padding: 8px;
}

.pf-sv-ph-hero {
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 179, 251, 0.5), rgba(115, 23, 165, 0.4));
    border-radius: 4px;
    margin-bottom: 6px;
}

.pf-sv-ph-item {
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin-bottom: 4px;
}

.pf-ph-short {
    width: 60%;
}

/* Dashboard mock */
.pf-sv-dash {
    display: flex;
    height: 170px;
    padding: 8px;
    gap: 8px;
}

.pf-sv-dash-side {
    width: 22%;
    background: rgba(115, 23, 165, 0.2);
    border-radius: 5px;
    border: 1px solid rgba(115, 23, 165, 0.2);
}

.pf-sv-dash-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pf-sv-dash-stats {
    display: flex;
    gap: 6px;
}

.pf-sv-stat-box {
    flex: 1;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.pf-stat-active {
    background: rgba(0, 179, 251, 0.15);
    border-color: rgba(0, 179, 251, 0.3);
}

.pf-sv-chart-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.pf-sv-chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(180deg, transparent, rgba(0, 179, 251, 0.15));
    border-top: 2px solid rgba(0, 179, 251, 0.7);
    clip-path: polygon(0 80%, 15% 55%, 30% 70%, 50% 20%, 70% 40%, 85% 15%, 100% 25%, 100% 100%, 0 100%);
}

/* SEO mock */
.pf-sv-seo-content {
    padding: 10px;
}

.pf-sv-seo-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 90px;
    padding: 0 4px;
}

.pf-sv-seo-bar {
    flex: 1;
    background: rgba(115, 23, 165, 0.35);
    border-radius: 3px 3px 0 0;
    border: 1px solid rgba(115, 23, 165, 0.3);
    transition: height 0.3s ease;
}

.pf-bar-active {
    background: linear-gradient(180deg, rgba(0, 179, 251, 0.8), rgba(115, 23, 165, 0.6));
    border-color: rgba(0, 179, 251, 0.5);
}

.pf-sv-kpi-row {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.pf-sv-kpi {
    flex: 1;
    height: 24px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-kpi-green {
    background: rgba(50, 200, 100, 0.15);
    border-color: rgba(50, 200, 100, 0.3);
}

/* Brand canvas mock */
.pf-sv-brand-canvas {
    position: relative;
    z-index: 1;
    width: 85%;
    padding: 20px;
}

.pf-sv-brand-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pf-sv-brand-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #7317A5, #00B3FB);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-sv-brand-shape {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 0 50%;
    transform: rotate(-15deg);
}

.pf-sv-brand-name-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pf-sv-brand-name {
    width: 110px;
    height: 13px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}

.pf-sv-brand-sub {
    width: 70px;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.pf-sv-palette {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.pf-sv-swatch {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.pf-sw-1 {
    background: #7317A5;
}

.pf-sw-2 {
    background: #00B3FB;
}

.pf-sw-3 {
    background: #1759A5;
}

.pf-sw-4 {
    background: #0c0c1e;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pf-sw-5 {
    background: rgba(255, 255, 255, 0.9);
}

.pf-sv-type-sample {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pf-sv-type-lg {
    width: 80%;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.pf-sv-type-md {
    width: 60%;
    height: 10px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 3px;
}

.pf-sv-type-sm {
    width: 45%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

/* Hover lift on visual */
.pf-showcase-item:hover .pf-showcase-visual {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* -- CONTENT SIDE -- */
.pf-showcase-content {
    padding: 0 40px;
    position: relative;
}

.pf-sc-num {
    font-family: var(--bs-font-tertiary);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(115, 23, 165, 0.2), rgba(0, 179, 251, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.pf-sc-cat {
    display: inline-block;
    font-family: var(--bs-font-tertiary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.pf-sc-title {
    font-family: var(--bs-font-tertiary);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.pf-sc-metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid #7317A5;
    border-radius: 0 8px 8px 0;
}

.pf-sc-metric-val {
    font-family: var(--bs-font-tertiary);
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pf-sc-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.pf-sc-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 18px;
}

.pf-sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.pf-sc-tags span {
    font-family: var(--bs-font-tertiary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.pf-sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--bs-font-tertiary);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 11px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pf-sc-link:hover {
    background: linear-gradient(90deg, #7317A5, #00B3FB);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(115, 23, 165, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== PORTFOLIO END ===== */

.ecommerce_web_process .ecomm_process_box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    padding: 40px 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ecommerce_web_process .ecomm_process_box:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 179, 251, 0.4);
    box-shadow: 0 16px 48px rgba(0, 179, 251, 0.12), 0 0 0 1px rgba(115, 23, 165, 0.15);
}