/* =========================================================
   01. GLOBAL
========================================================= */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #070b18;
    color: #fff;
}

img {
    max-width: 100%;
}

a {
    transition: .25s;
}

/* =========================================================
   02. COMMON TITLE / BADGE / HOME BUTTON
========================================================= */
.section-title {
    text-align: center;
    margin-bottom: 34px;
}

.section-title h2 {
    font-size: 34px;
    margin: 10px 0;
}

.section-title p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.055);
    color: #c7d2fe;
    font-size: 13px;
    font-weight: 700;
}

.home-action {
    width: 100%;
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.045);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-outline-btn:hover {
    border-color: rgba(139,92,246,.75);
    background: rgba(139,92,246,.1);
}

/* =========================================================
   03. NAVBAR
========================================================= */
.site-navbar {
    width: 100%;
    background: #061126;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 50;
}

.nav-inner {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 23px;
    font-weight: 900;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    box-shadow: 0 10px 30px rgba(124,58,237,.35);
}

.brand strong {
    display: block;
    font-size: 19px;
    letter-spacing: .5px;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #cbd5e1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu a:hover {
    color: #8b5cf6;
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-login {
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.nav-quote {
    padding: 13px 24px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    box-shadow: 0 14px 30px rgba(59,130,246,.28);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
}

/* =========================================================
   04. HERO
========================================================= */
.hero-bg {
    width: 100%;
    background:
        radial-gradient(circle at 75% 35%, rgba(37,99,235,.28), transparent 32%),
        linear-gradient(135deg, #061024 0%, #071b3d 58%, #041126 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .2;
    transform: perspective(600px) rotateX(58deg) scale(1.4);
    transform-origin: center top;
    pointer-events: none;
}

.hero-main {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 610px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.1);
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 700;
}

.hero-badge span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 14px #8b5cf6;
}

.hero-main h1 {
    margin: 28px 0 20px;
    color: #fff;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.hero-main h1 strong {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 10%, #3b82f6 55%, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main p {
    max-width: 590px;
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 17px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.hero-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    box-shadow: 0 16px 35px rgba(59,130,246,.3);
}

.hero-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.035);
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 118%;
    max-width: 860px;
    transform: translateX(35px);
    filter: drop-shadow(0 35px 70px rgba(0,0,0,.45));
}

/* =========================================================
   05. STATS BAR
========================================================= */
.stats-bar-section {
    padding: 0 8%;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}

.stats-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 24px 34px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 25px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
}

.stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.stats-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(6,182,212,.2));
    border: 1px solid rgba(255,255,255,.12);
}

.stats-item h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    background: linear-gradient(135deg,#8b5cf6,#06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-item p {
    margin: 6px 0 0;
    color: #cbd5e1;
    font-size: 13px;
}

.stats-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.14);
}

/* =========================================================
   06. SERVICES
========================================================= */
.services-perfect {
    padding: 25px 8% 64px;
    background: #070b18;
}

.services-perfect .section-title {
    margin-bottom: 34px;
}

.services-perfect .section-title h2 {
    color: #fff;
}

.services-perfect .section-title p {
    color: #9fb0c7;
}

.services-perfect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 18px;
}

.service-perfect-card {
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: .25s;
}

.service-perfect-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139,92,246,.65);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    box-shadow: 0 14px 32px rgba(124,58,237,.25);
}

.service-perfect-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.service-perfect-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.service-perfect-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.service-perfect-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.service-perfect-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
    stroke-width: 2.2;
}

.service-perfect-card h3 {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    margin: 0 0 12px;
    font-weight: 700;
}

.service-perfect-card p {
    color: #aab8cc;
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.card-link {
    color: #8b5cf6;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.card-link:hover {
    color: #06b6d4;
}

.services-perfect-grid:has(.service-perfect-card:nth-child(1):last-child) {
    grid-template-columns: 260px;
    justify-content: center;
}

/* =========================================================
   07. WHY CHOOSE US
========================================================= */
.why-perfect-section {
    padding: 52px 8% 46px;
    background: #f8fafc;
    color: #111827;
}

.why-title {
    margin-bottom: 26px;
}

.why-title h2 {
    color: #111827;
}

.why-title p {
    color: #64748b;
}

.light-badge {
    background: rgba(99,102,241,.1);
    color: #6366f1;
    border: 1px solid rgba(99,102,241,.2);
}

.why-perfect-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 42px;
}

.why-perfect-item {
    text-align: center;
}

.why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.why-icon svg {
    width: 30px;
    height: 30px;
}

.icon-purple { background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.35); }
.icon-green { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.35); }
.icon-orange { background: rgba(245,158,11,.13); border: 1px solid rgba(245,158,11,.35); }
.icon-blue { background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.35); }
.icon-pink { background: rgba(236,72,153,.12); border: 1px solid rgba(236,72,153,.35); }

.icon-purple svg { color: #8b5cf6; }
.icon-green svg { color: #10b981; }
.icon-orange svg { color: #f59e0b; }
.icon-blue svg { color: #3b82f6; }
.icon-pink svg { color: #ec4899; }

.why-perfect-item h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #111827;
}

.why-perfect-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}

/* =========================================================
   08. PRODUCTS
========================================================= */
.products-section {
    padding: 35px 8% 30px;
    background: #070b18;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.product-card {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 18px;
}

.product-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.product-content p {
    font-size: 13px;
    color: #94a3b8;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.preview-btn,
.buy-btn {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 700;
}

.preview-btn {
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
}

.buy-btn {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
}

/* =========================================================
   09. PROCESS
========================================================= */
.process-perfect {
    padding: 35px 8%;
    background: radial-gradient(circle at center, rgba(99,102,241,.15), transparent 40%);
}

.process-line-wrapper {
    position: relative;
    margin-top: 50px;
}

.process-line {
    position: absolute;
    top: 35px;          /* icon center */
    left: 10%;          /* first icon center */
    width: 80%;         /* last icon center পর্যন্ত */
    height: 2px;
    background: rgba(255,255,255,.18);
	border-top: 2px dashed rgba(255,255,255,.25);
    z-index: 0;
}


.process-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
	position: relative;
    z-index: 2;
}

.process-item {
    text-align: center;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item:nth-child(1) .process-icon { background: linear-gradient(135deg, #7c3aed, #06b6d4); }
.process-item:nth-child(2) .process-icon { background: linear-gradient(135deg, #22c55e, #4ade80); }
.process-item:nth-child(3) .process-icon { background: linear-gradient(135deg, #f97316, #fb923c); }
.process-item:nth-child(4) .process-icon { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.process-item:nth-child(5) .process-icon { background: linear-gradient(135deg, #ec4899, #f472b6); }

.process-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.process-item span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.process-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.process-item p {
    font-size: 13px;
    color: #94a3b8;
}

/* =========================================================
   10. CLIENT LOGO
========================================================= */
.client-section {
    padding: 45px 8%;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.trusted-text {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.logo-marquee {
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

.logo-track img {
    height: 34px;
    opacity: .7;
    filter: grayscale(100%) brightness(1.3);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================================
   11. COMBO
========================================================= */
.combo-section {
    padding: 30px 8%;
    background: #070b18;
}

.combo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.combo-box {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 20px;
}

.combo-head {
    margin-bottom: 16px;
}

.combo-head h3 {
    font-size: 18px;
    margin-top: 5px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.portfolio-action {
    justify-content: flex-start;
}

.quote-icon {
    font-size: 40px;
    color: #8b5cf6;
    margin-bottom: 10px;
}

.testimonial-main p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.client {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.client strong {
    display: block;
    font-size: 13px;
}

.client span {
    font-size: 12px;
    color: #94a3b8;
}

.dots {
    margin-top: 14px;
}

.dots span {
    width: 6px;
    height: 6px;
    background: #555;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

.dots .active {
    background: #8b5cf6;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-q {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* =========================================================
   12. CTA + FOOTER
========================================================= */
.mockup-cta-section {
    padding: 34px 8% 20px;
    background: #070b18;
}

.mockup-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 42px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b1e9e, #243bca, #1d4ed8);
}

.mockup-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: rgba(255,255,255,.14);
}

.mockup-cta-left h2 {
    margin: 0 0 5px;
    font-size: 28px;
}

.mockup-cta-left p {
    margin: 0;
    color: #dbeafe;
    font-size: 14px;
}

.mockup-cta-btn {
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer {
    padding: 22px;
    text-align: center;
    color: #94a3b8;
    background: #070b18;
}

/* =========================================================
   13. RESPONSIVE
========================================================= */
@media (max-width: 992px) {
    .site-navbar {
        margin: 0;
        padding: 22px;
    }

    .nav-menu,
    .nav-right {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-main {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 52px 24px 38px;
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-content,
    .section-title,
    .service-perfect-card,
    .why-perfect-item,
    .process-item,
    .product-content,
    .combo-box {
        text-align: center;
    }

    .hero-main h1 {
        font-size: 42px;
    }

    .hero-main p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .services-perfect-grid,
    .products-grid,
    .combo-grid,
    .why-perfect-grid,
    .process-items {
        grid-template-columns: 1fr;
    }

    .process-line {
        display: none;
    }

    .service-icon,
    .why-icon,
    .process-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stats-divider {
        display: none;
    }

    .stats-item {
        flex-direction: column;
        text-align: center;
    }

    .product-bottom {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-action {
        justify-content: center;
    }

    .mockup-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 26px 22px;
    }

    .mockup-cta-left {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-main h1 {
        font-size: 36px;
    }

    .home-outline-btn {
        min-width: 190px;
    }
}


/* PREMIUM FOOTER */
.footer-premium {
    background: linear-gradient(180deg, #071126, #040914);
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 38px;
}

.footer-container {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1.3fr;
    gap: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.footer-logo strong {
    display: block;
    font-size: 18px;
    letter-spacing: .5px;
}

.footer-logo small {
    display: block;
    color: #94a3b8;
    font-size: 10px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    overflow: hidden;
    padding: 0;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: #4f46e5;
}

.footer-social a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-social svg {
    width: 15px;
    height: 15px;
}

.footer-social a:hover {
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.footer-col h4 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #8b5cf6;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 13px;
    margin: 0 0 10px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: #60a5fa;
}

.footer-bottom {
    margin-top: 26px;
    padding: 14px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-social,
    .footer-contact p {
        justify-content: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
}




/* ===============================
   Premium Services List Page
================================ */

.sl-hero {
    background: linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 90px 20px 70px;
    text-align: center;
    color: #ffffff;
}

.sl-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sl-hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 18px 0 16px;
}

.sl-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 17px;
}

.sl-section {
    background: #f8fafc;
    padding: 75px 20px;
}

.sl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.sl-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    transition: 0.25s ease;
}

.sl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    border-color: #d1fae5;
}

.sl-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #ecfdf5;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.sl-icon svg {
    width: 28px;
    height: 28px;
}

.sl-content h3 {
    font-size: 23px;
    color: #0f172a;
    margin-bottom: 12px;
}

.sl-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.sl-footer {
    margin-top: 24px;
}

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.sl-btn:hover {
    background: #16a34a;
    color: #ffffff;
}

.sl-empty {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.sl-empty h3 {
    color: #0f172a;
    margin-bottom: 8px;
}

.sl-empty p {
    color: #64748b;
}

.sl-cta-section {
    background: #f8fafc;
    padding: 0 20px 80px;
}

.sl-cta-box {
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 26px;
    padding: 36px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.sl-cta-box h2 {
    font-size: 32px;
    margin: 14px 0 10px;
}

.sl-cta-box p {
    color: #cbd5e1;
    line-height: 1.7;
}

.sl-cta-btn {
    white-space: nowrap;
    background: #22c55e;
    color: #07110b;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
}

.sl-cta-btn:hover {
    background: #16a34a;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .sl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sl-hero h1 {
        font-size: 40px;
    }

    .sl-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .sl-hero {
        padding: 70px 16px 52px;
    }

    .sl-hero h1 {
        font-size: 32px;
    }

    .sl-hero p {
        font-size: 15px;
    }

    .sl-section {
        padding: 50px 16px;
    }

    .sl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sl-card {
        min-height: auto;
        padding: 22px;
    }

    .sl-cta-section {
        padding: 0 16px 55px;
    }

    .sl-cta-box {
        padding: 26px;
        border-radius: 20px;
    }

    .sl-cta-box h2 {
        font-size: 25px;
    }

    .sl-cta-btn {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   QUOTE PAGE PREMIUM
========================================================= */

.quote-hero {
    padding: 85px 8% 65px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(139,92,246,.35), transparent 35%),
        linear-gradient(180deg, #071126, #070b18);
}

.quote-hero h1 {
    margin: 16px 0 12px;
    font-size: 52px;
    line-height: 1.1;
}

.quote-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.7;
}

.quote-section {
    padding: 70px 8%;
    background: #070b18;
}

.quote-container {
    width: min(1440px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.quote-info,
.quote-form-box {
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.quote-info h2 {
    margin: 0 0 12px;
    font-size: 32px;
}

.quote-info p {
    color: #94a3b8;
    line-height: 1.8;
}

.quote-benefits {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.quote-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
}

.quote-benefits svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.quote-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-form-box input,
.quote-form-box textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.07);
    color: #fff;
    outline: none;
}

.quote-form-box textarea {
    min-height: 140px;
    resize: vertical;
}

.quote-form-box input::placeholder,
.quote-form-box textarea::placeholder {
    color: #94a3b8;
}

.quote-submit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    padding: 15px 22px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    box-shadow: 0 14px 35px rgba(59,130,246,.3);
}

.alert-success {
    background: rgba(34,197,94,.14);
    border: 1px solid rgba(34,197,94,.35);
    color: #86efac;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.alert-error {
    background: rgba(239,68,68,.14);
    border: 1px solid rgba(239,68,68,.35);
    color: #fecaca;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.alert-error p {
    margin: 0 0 6px;
}

.alert-error p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .quote-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quote-hero {
        padding: 65px 5% 50px;
    }

    .quote-hero h1 {
        font-size: 36px;
    }

    .quote-section {
        padding: 45px 5%;
    }

    .quote-info,
    .quote-form-box {
        text-align: center;
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-benefits div {
        justify-content: center;
    }
}


/* ===== PRODUCTS GRID FORCE FIX ===== */

.products-section {
    padding: 45px 8% 55px;
    background: #070b18;
}

.products-section .products-grid {
    width: 100% !important;
    max-width: 1440px;
    margin: 40px auto 0;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.products-section .product-card {
    width: 100% !important;
    min-width: 0;
}

/* Image broken holeo height thakbe */
.products-section .product-card img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(6,182,212,.18));
}

@media (max-width: 992px) {
    .products-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .products-section .products-grid {
        grid-template-columns: 1fr !important;
    }

    .product-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
}


/* PRODUCT DETAILS */

/* ================================
   Premium Product Details Page
================================ */

.pd-page {
    background: #f8fafc;
    padding: 70px 20px;
}

.pd-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) 420px;
    gap: 32px;
    align-items: start;
}

.pd-main {
    min-width: 0;
}

.pd-preview-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.pd-preview-card img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.pd-gallery {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.pd-thumb {
    width: 92px;
    height: 70px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.pd-thumb.active {
    border-color: #111827;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
    display: block;
}

.pd-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.pd-card h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 14px;
}

.pd-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

.pd-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pd-feature-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px;
}

.pd-feature-item span {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex: 0 0 auto;
}

.pd-feature-item p {
    margin: 0;
    color: #334155;
    line-height: 1.5;
}

.pd-list {
    padding-left: 18px;
    color: #475569;
    line-height: 1.9;
}

.pd-demo-box {
    background: #0f172a;
    color: #e5e7eb;
    padding: 18px;
    border-radius: 14px;
    white-space: pre-wrap;
    line-height: 1.7;
    overflow-x: auto;
}

.pd-sidebar {
    position: sticky;
    top: 24px;
}

.pd-buy-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.pd-label {
    display: inline-block;
    background: #ecfdf5;
    color: #15803d;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pd-buy-card h1 {
    font-size: 30px;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 12px;
}

.pd-short {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pd-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 22px;
}

.pd-price del {
    color: #94a3b8;
    font-size: 18px;
}

.pd-price strong {
    color: #111827;
    font-size: 36px;
    font-weight: 800;
}

.pd-actions {
    display: grid;
    gap: 12px;
}

.pd-buy-btn,
.pd-preview-btn {
    display: block;
    text-align: center;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}

.pd-buy-btn {
    background: #111827;
    color: #ffffff;
}

.pd-buy-btn:hover {
    background: #000000;
}

.pd-preview-btn {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.pd-preview-btn:hover {
    background: #e2e8f0;
}

.pd-info-list {
    margin-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.pd-info-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.pd-info-list span {
    color: #64748b;
}

.pd-info-list strong {
    color: #0f172a;
}

/* Responsive */
@media (max-width: 992px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-sidebar {
        position: static;
        order: -1;
    }

    .pd-buy-card h1 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .pd-page {
        padding: 45px 14px;
    }

    .pd-preview-card,
    .pd-card,
    .pd-buy-card {
        border-radius: 18px;
    }

    .pd-card {
        padding: 20px;
    }

    .pd-buy-card {
        padding: 22px;
    }

    .pd-feature-grid {
        grid-template-columns: 1fr;
    }

    .pd-price strong {
        font-size: 30px;
    }

    .pd-thumb {
        width: 78px;
        height: 60px;
    }
}

/* =========================================================
   PAYMENT PAGE PREMIUM
========================================================= */

.payment-hero {
    padding: 85px 8% 65px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(139,92,246,.35), transparent 35%),
        linear-gradient(180deg, #071126, #070b18);
}

.payment-hero h1 {
    margin: 16px 0 12px;
    font-size: 52px;
    line-height: 1.1;
}

.payment-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.7;
}

.payment-section {
    padding: 70px 8%;
    background: #070b18;
}

.payment-container {
    width: min(1440px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.payment-summary,
.payment-form-box {
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.payment-summary h2,
.payment-form-box h2 {
    margin: 0 0 20px;
    font-size: 28px;
}

.summary-box {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.summary-box span,
.total-box span {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 6px;
}

.summary-box strong {
    color: #fff;
    font-size: 16px;
}

.total-box {
    margin: 24px 0;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139,92,246,.35), rgba(6,182,212,.22));
    border: 1px solid rgba(255,255,255,.14);
}

.total-box strong {
    font-size: 36px;
    color: #fff;
}

.payment-trust {
    display: grid;
    gap: 10px;
}

.payment-trust div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
}

.payment-trust svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.payment-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 700;
}

.payment-form-box input,
.payment-form-box select,
.payment-form-box textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.07);
    color: #fff;
    outline: none;
}

.payment-form-box select option {
    color: #111827;
}

.payment-form-box textarea {
    min-height: 120px;
    resize: vertical;
}

.payment-form-box input::placeholder,
.payment-form-box textarea::placeholder {
    color: #94a3b8;
}

.payment-submit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    padding: 15px 22px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    box-shadow: 0 14px 35px rgba(59,130,246,.3);
}

@media (max-width: 900px) {
    .payment-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .payment-hero {
        padding: 65px 5% 50px;
    }

    .payment-hero h1 {
        font-size: 36px;
    }

    .payment-section {
        padding: 45px 5%;
    }

    .payment-summary,
    .payment-form-box {
        text-align: center;
        padding: 24px;
    }

    .payment-trust div {
        justify-content: center;
    }
}


/* =========================================================
   PAYMENT SUCCESS PAGE PREMIUM
========================================================= */

.payment-success-section {
    min-height: 75vh;
    padding: 90px 8%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top, rgba(34,197,94,.2), transparent 32%),
        linear-gradient(180deg, #071126, #070b18);
}

.payment-success-card {
    max-width: 780px;
    width: 100%;
    text-align: center;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.success-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(34,197,94,.14);
    border: 1px solid rgba(34,197,94,.35);
    box-shadow: 0 0 45px rgba(34,197,94,.18);
}

.success-icon svg {
    width: 46px;
    height: 46px;
    color: #22c55e;
}

.payment-success-card h1 {
    font-size: 42px;
    margin: 18px 0 12px;
}

.payment-success-card p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: #cbd5e1;
    line-height: 1.8;
}

.success-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.success-info-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}

.success-info-grid span {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 7px;
}

.success-info-grid strong {
    color: #fff;
    font-size: 15px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.success-actions .hero-btn,
.success-actions .home-outline-btn {
    min-width: 170px;
}

@media (max-width: 768px) {
    .payment-success-section {
        padding: 60px 5%;
    }

    .payment-success-card {
        padding: 30px 22px;
    }

    .payment-success-card h1 {
        font-size: 32px;
    }

    .success-info-grid {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .hero-btn,
    .success-actions .home-outline-btn {
        width: 100%;
    }
}




/* =========================================================
  ORDER PAGE PREMIUM
========================================================= */

.order-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8faff, #eef2ff);
}

.order-box {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    padding: 34px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.order-header {
    text-align: center;
    margin-bottom: 28px;
}

.order-header h2 {
    font-size: 34px;
    margin: 12px 0 8px;
}

.order-header p {
    color: #64748b;
}

.order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #111827, #312e81);
    color: #fff;
    margin-bottom: 26px;
}

.order-summary span {
    font-size: 13px;
    color: #c7d2fe;
}

.order-summary h3 {
    margin: 6px 0 0;
    font-size: 21px;
}

.order-price {
    font-size: 26px;
    font-weight: 800;
    white-space: nowrap;
}

.order-form .form-group {
    margin-bottom: 16px;
}

.order-form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #0f172a;
}

.order-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: 15px;
    outline: none;
}

.order-form input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.order-submit-btn {
    width: 100%;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;

    color: #6366f1;
    background: rgba(99, 102, 241, 0.12);

    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;

    letter-spacing: 0.5px;
}

.manual-payment-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 22px;
}

.manual-payment-box h3 {
    margin-bottom: 14px;
}

.manual-method {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.manual-method:last-child {
    border-bottom: 0;
}

.manual-method span {
    color: #64748b;
    font-weight: 600;
}

.manual-method strong {
    color: #111827;
}

.payment-instruction {
    margin-top: 15px;
    padding: 14px;
    background: #fff;
    border-radius: 12px;
    color: #334155;
    line-height: 1.7;
}


.payment-method-inline-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 24px;
}

.payment-method-logo-card {
    width: 130px;
    min-height: 86px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    transition: 0.2s ease;
}

.payment-method-logo-card img {
    max-width: 76px;
    max-height: 34px;
    object-fit: contain;
}

.payment-method-logo-card span {
    font-size: 13px;
    font-weight: 600;
}

.payment-method-logo-card.active {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.18);
    background: #0f1f17;
}

.payment-logo-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #22c55e;
    color: #07110b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.payment-info-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 22px;
}

.payment-info-box h4 {
    margin-bottom: 12px;
}

.payment-info-box p {
    margin-top: 12px;
    line-height: 1.7;
    color: #d1d5db;
}

.account-row {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.copy-btn {
    border: 0;
    background: #22c55e;
    color: #07110b;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.payment-submit-form {
    margin-top: 10px;
}

.payment-submit-form h3 {
    margin-bottom: 16px;
}




.products-hero {
    padding: 90px 20px 60px;
    text-align: center;
    background: #050816;
    color: #fff;
}

.products-hero .badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 18px;
}

.products-hero h1 {
    font-size: 44px;
    margin-bottom: 14px;
}

.products-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.7;
}

.products-section {
    padding: 70px 20px;
    background: #f8fafc;
}

.products-container {
    max-width: 1180px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.product-image {
    height: 220px;
    background: #e5e7eb;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 22px;
}

.product-type {
    display: inline-block;
    background: #ecfdf5;
    color: #15803d;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 12px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.product-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-price {
    margin-bottom: 20px;
}

.product-price del {
    color: #94a3b8;
    margin-right: 8px;
}

.product-price strong {
    color: #16a34a;
    font-size: 22px;
}

.product-card-actions {
    display: flex;
    gap: 10px;
}

.product-details-btn,
.product-buy-btn {
    flex: 1;
    text-align: center;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.product-details-btn {
    background: #f1f5f9;
    color: #0f172a;
}

.product-buy-btn {
    background: #111827;
    color: #fff;
}

.empty-products {
    background: #fff;
    padding: 45px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.empty-products h3 {
    margin-bottom: 8px;
    color: #0f172a;
}

.empty-products p {
    color: #64748b;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-hero {
        padding: 70px 16px 45px;
    }

    .products-hero h1 {
        font-size: 30px;
    }

    .product-card-actions {
        flex-direction: column;
    }
}



/*prodt filter */


.product-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-filter-bar input,
.product-filter-bar select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 200px;
}

.product-filter-bar button {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}


/* ===============================
   Homepage Premium Product Section
================================ */

.home-products-premium {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), transparent 34%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 80px 20px;
}

.home-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title.white {
    text-align: center;
}

.section-title.white h2 {
    color: #ffffff;
}

.section-title.white p {
    color: #cbd5e1;
}

/* GRID */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

/* CARD */
.home-product-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.25s ease;
}

.home-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.4);
}

/* IMAGE (UNCHANGED HEIGHT) */
.hp-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #0f172a;
}

.hp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TYPE BADGE */
.hp-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #22c55e;
    color: #07110b;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

/* CONTENT */
.hp-content {
    padding: 18px;
}

/* TITLE */
.hp-content h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.hp-content p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    min-height: 40px;
}

/* META */
.hp-meta {
    color: #22c55e;
    font-size: 12px;
    margin-bottom: 10px;
}

/* BOTTOM */
.hp-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PRICE */
.hp-price strong {
    color: #22c55e;
    font-size: 18px;
    font-weight: 800;
}

.hp-price small {
    color: #94a3b8;
    font-size: 12px;
}

/* BUTTONS */
.hp-actions {
    display: flex;
    gap: 6px;
}

.hp-actions a {
    font-size: 11px;
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

/* PREVIEW */
.hp-preview-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* VIEW */
.hp-view-btn {
    background: #22c55e;
    color: #07110b;
}

/* HOVER */
.hp-view-btn:hover {
    background: #16a34a;
    color: #fff;
}

.hp-preview-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* EMPTY */
.home-products-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #cbd5e1;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 992px) {
    .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-image {
        height: 220px;
    }
}

@media (max-width: 640px) {

    .home-products-premium {
        padding: 60px 16px;
    }

    .home-products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hp-image {
        height: 200px;
    }

    .hp-content {
        padding: 14px;
    }

    .hp-content h3 {
        font-size: 16px;
    }

    .hp-content p {
        font-size: 12px;
        min-height: auto;
    }

    .hp-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .hp-actions {
        width: 100%;
    }

    .hp-actions a {
        flex: 1;
        text-align: center;
    }
}


/* ===============================
   Service Details Page - Premium Safe CSS
================================ */

.sdx-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sdx-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #15803d;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* HERO */
.sdx-hero {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 35%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 90px 20px;
    color: #ffffff;
}

.sdx-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 35px;
    align-items: center;
}

.sdx-hero-content h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.sdx-hero-content p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
}

.sdx-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.sdx-overview-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.sdx-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #22c55e;
    color: #07110b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sdx-icon svg {
    width: 30px;
    height: 30px;
}

.sdx-overview-card h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 16px;
}

.sdx-overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdx-overview-card li {
    color: #dbeafe;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sdx-overview-card li:before {
    content: "✓";
    color: #22c55e;
    font-weight: 900;
    margin-right: 8px;
}

/* BUTTONS */
.sdx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}

.sdx-btn-primary {
    background: #22c55e;
    color: #07110b;
}

.sdx-btn-primary:hover {
    background: #16a34a;
    color: #ffffff;
}

.sdx-btn-outline-light {
    border: 1px solid rgba(255,255,255,0.45);
    color: #ffffff;
}

.sdx-btn-outline-light:hover {
    background: #ffffff;
    color: #020617;
}

.sdx-btn-dark {
    background: #111827;
    color: #ffffff;
}

.sdx-btn-dark:hover {
    background: #16a34a;
    color: #ffffff;
}

.sdx-btn-outline-dark {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #ffffff;
}

.sdx-btn-outline-dark:hover {
    background: #111827;
    color: #ffffff;
}

/* ABOUT */
.sdx-about {
    background: #ffffff;
    padding: 75px 20px;
}

.sdx-about-card {
    background: #ffffff;
}

.sdx-about-card h2 {
    color: #0f172a;
    font-size: 36px;
    margin-bottom: 18px;
}

.sdx-about-card p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    max-width: 900px;
}

/* SECTION HEAD */
.sdx-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.sdx-section-head h2 {
    color: #0f172a;
    font-size: 40px;
    margin-bottom: 12px;
}

.sdx-section-head p {
    color: #64748b;
    font-size: 16px;
}

/* PACKAGES */
.sdx-packages {
    background: #f8fafc;
    padding: 80px 20px;
}

.sdx-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.sdx-package-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.07);
    transition: 0.25s ease;
}

.sdx-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15,23,42,0.12);
}

.sdx-popular-card {
    border: 2px solid #22c55e;
}

.sdx-popular-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    background: #22c55e;
    color: #07110b;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.sdx-package-card h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 14px;
}

.sdx-package-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.sdx-package-price del {
    color: #94a3b8;
}

.sdx-package-price strong {
    color: #111827;
    font-size: 30px;
    font-weight: 900;
}

.sdx-delivery {
    color: #64748b;
    margin-bottom: 18px;
}

.sdx-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.sdx-feature-list li {
    color: #334155;
    padding: 9px 0;
    border-bottom: 1px solid #eef2f7;
}

.sdx-feature-list li:before {
    content: "✓";
    color: #16a34a;
    font-weight: 900;
    margin-right: 8px;
}

.sdx-package-actions {
    display: grid;
    gap: 10px;
}

.sdx-empty-package {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 22px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(15,23,42,0.08);
}

.sdx-empty-package h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

.sdx-empty-package p {
    color: #64748b;
    margin-bottom: 18px;
}

/* PROCESS */
.sdx-process {
    background: #ffffff;
    padding: 80px 20px;
}

.sdx-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sdx-process-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.sdx-process-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: #ecfdf5;
    color: #15803d;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 14px;
}

.sdx-process-card h3 {
    color: #0f172a;
    margin-bottom: 8px;
}

.sdx-process-card p {
    color: #64748b;
    line-height: 1.6;
}

/* FINAL CTA */
.sdx-final-cta {
    background: #f8fafc;
    padding: 0 20px 85px;
}

.sdx-final-box {
    background: linear-gradient(135deg, #111827, #020617);
    border-radius: 28px;
    padding: 38px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.18);
}

.sdx-final-box h2 {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 10px;
}

.sdx-final-box p {
    color: #cbd5e1;
}


/* Service Details Badge Clear Fix */
.sdx-badge {
    background: #dcfce7;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.14);
}

/* Packages heading badge extra clear */
.sdx-section-head .sdx-badge {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sdx-hero-grid {
        grid-template-columns: 1fr;
    }

    .sdx-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdx-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sdx-final-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .sdx-hero {
        padding: 70px 16px;
    }

    .sdx-hero-content h1 {
        font-size: 34px;
    }

    .sdx-about,
    .sdx-packages,
    .sdx-process {
        padding: 55px 16px;
    }

    .sdx-section-head h2,
    .sdx-about-card h2 {
        font-size: 28px;
    }

    .sdx-package-grid,
    .sdx-process-grid {
        grid-template-columns: 1fr;
    }

    .sdx-package-card {
        padding: 24px;
    }

    .sdx-final-cta {
        padding: 0 16px 60px;
    }

    .sdx-final-box {
        padding: 26px;
        border-radius: 22px;
    }

    .sdx-final-box h2 {
        font-size: 26px;
    }

    .sdx-btn {
        width: 100%;
        text-align: center;
    }
}



/* ===============================
   Service Details FAQ Clear Fix
================================ */

.sdx-faq {
    background: #f8fafc !important;
    padding: 80px 20px !important;
    color: #0f172a !important;
}

.sdx-faq .sdx-section-head {
    text-align: center;
    margin-bottom: 35px;
}

.sdx-faq .sdx-section-head h2 {
    color: #0f172a !important;
    font-size: 38px;
    margin-bottom: 10px;
}

.sdx-faq .sdx-badge {
    background: #dcfce7 !important;
    color: #065f46 !important;
    border: 1px solid #86efac !important;
}

.sdx-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.sdx-faq-item {
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
    padding: 22px 24px;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.sdx-faq-item h4 {
    color: #0f172a !important;
    font-size: 18px;
    margin-bottom: 8px;
}

.sdx-faq-item p {
    color: #475569 !important;
    line-height: 1.7;
    margin: 0;
}   



/* Order Page Button Fix */
.order-submit-btn,
button.order-submit-btn,
.order-form button[type="submit"] {
    width: 100%;
    background: #111827 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 15px 20px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    margin-top: 18px !important;
    transition: 0.2s ease;
}

.order-submit-btn:hover,
.order-form button[type="submit"]:hover {
    background: #16a34a !important;
    color: #ffffff !important;
}


/* ===============================
   Premium Payment Page Safe CSS
================================ */

.ppx-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ppx-badge {
    display: inline-block;
    background: #dcfce7;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ppx-hero {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 35%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 85px 20px;
    color: #ffffff;
    text-align: center;
}

.ppx-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 14px;
}

.ppx-hero p {
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.ppx-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.ppx-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 30px;
    align-items: start;
}

.ppx-summary-card,
.ppx-payment-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.07);
}

.ppx-summary-card h2,
.ppx-payment-card h2 {
    color: #0f172a;
    margin-bottom: 20px;
}

.ppx-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
}

.ppx-summary-row span {
    color: #64748b;
}

.ppx-summary-row strong {
    color: #0f172a;
    text-align: right;
}

.ppx-total-box {
    margin-top: 20px;
    background: #111827;
    color: #ffffff;
    border-radius: 18px;
    padding: 20px;
}

.ppx-total-box span {
    display: block;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.ppx-total-box strong {
    font-size: 28px;
    color: #22c55e;
}

.ppx-trust-list {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    color: #475569;
}

.ppx-muted {
    color: #64748b;
    margin-top: -8px;
    margin-bottom: 22px;
}

.ppx-alert {
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

.ppx-alert.success {
    background: #ecfdf5;
    color: #15803d;
}

.ppx-alert.error {
    background: #fef2f2;
    color: #dc2626;
}

.ppx-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.ppx-method-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px 14px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease;
    min-height: 118px;
}

.ppx-method-card:hover,
.ppx-method-card.active {
    border-color: #22c55e;
    box-shadow: 0 10px 28px rgba(34,197,94,0.14);
    transform: translateY(-2px);
}

.ppx-method-card.active {
    background: #ecfdf5;
}

.ppx-method-logo {
    width: 70px;
    height: 46px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppx-method-logo img {
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.ppx-method-logo span {
    width: 42px;
    height: 42px;
    background: #22c55e;
    color: #07110b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.ppx-method-card strong {
    color: #0f172a;
    font-size: 14px;
}

.ppx-selected-area {
    margin-top: 10px;
}

.ppx-info-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 24px;
}

.ppx-small-label,
.ppx-account-box span,
.ppx-instruction span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.ppx-info-box h3 {
    color: #0f172a;
    font-size: 24px;
    margin-bottom: 16px;
}

.ppx-account-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 16px;
}

.ppx-account-box div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.ppx-account-box strong {
    color: #111827;
    font-size: 18px;
}

.ppx-account-box button {
    background: #22c55e;
    color: #07110b;
    border: none;
    padding: 8px 13px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
}

.ppx-instruction p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.ppx-form-area h3 {
    color: #0f172a;
    margin-bottom: 18px;
}

.ppx-field {
    margin-bottom: 18px;
}

.ppx-field label {
    display: block;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 8px;
}

.ppx-field input,
.ppx-field textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    transition: 0.2s ease;
}

.ppx-field input:focus,
.ppx-field textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

.ppx-field textarea {
    min-height: 110px;
    resize: vertical;
}

.ppx-submit-btn {
    width: 100%;
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.ppx-submit-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 992px) {
    .ppx-layout {
        grid-template-columns: 1fr;
    }

    .ppx-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .ppx-hero {
        padding: 70px 16px;
    }

    .ppx-section {
        padding: 55px 16px;
    }

    .ppx-hero h1 {
        font-size: 34px;
    }

    .ppx-summary-card,
    .ppx-payment-card {
        padding: 22px;
        border-radius: 20px;
    }

    .ppx-method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ppx-account-box div {
        flex-direction: column;
        align-items: flex-start;
    }

    .ppx-account-box button {
        width: 100%;
    }
}

/* ===============================
   Payment Success Page Safe CSS
================================ */

.psx-container {
    max-width: 1050px;
    margin: 0 auto;
}

.psx-badge {
    display: inline-block;
    background: #dcfce7;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.psx-hero {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 35%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 85px 20px;
    color: #ffffff;
    text-align: center;
}

.psx-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 14px;
}

.psx-hero p {
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.psx-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.psx-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 42px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
}

.psx-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    background: #ecfdf5;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.psx-icon svg {
    width: 44px;
    height: 44px;
}

.psx-card h2 {
    color: #0f172a;
    font-size: 34px;
    margin-bottom: 12px;
}

.psx-message {
    color: #64748b;
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.psx-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.psx-info-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
}

.psx-info-item span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.psx-info-item strong {
    color: #0f172a;
    font-size: 17px;
}

.psx-status {
    color: #b45309 !important;
}

.psx-note {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 18px;
    padding: 18px;
    text-align: left;
    max-width: 760px;
    margin: 0 auto 30px;
}

.psx-note strong {
    color: #92400e;
}

.psx-note p {
    color: #92400e;
    line-height: 1.7;
    margin-top: 6px;
}

.psx-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.psx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.2s ease;
}

.psx-btn-primary {
    background: #111827;
    color: #ffffff;
}

.psx-btn-primary:hover {
    background: #16a34a;
    color: #ffffff;
}

.psx-btn-outline {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.psx-btn-outline:hover {
    background: #111827;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .psx-hero h1 {
        font-size: 36px;
    }

    .psx-info-grid {
        grid-template-columns: 1fr;
    }

    .psx-card {
        padding: 28px;
        border-radius: 22px;
    }

    .psx-actions {
        flex-direction: column;
    }

    .psx-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .psx-hero {
        padding: 70px 16px;
    }

    .psx-section {
        padding: 55px 16px;
    }

    .psx-hero h1 {
        font-size: 31px;
    }
}





/* ===============================
   Quote Track / Status Safe CSS
================================ */

.qts-container {
    max-width: 1050px;
    margin: 0 auto;
}

.qts-badge {
    display: inline-block;
    background: #dcfce7;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.qts-hero {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 35%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 85px 20px;
    color: #ffffff;
    text-align: center;
}

.qts-hero h1 {
    color: #ffffff;
    font-size: 46px;
    margin-bottom: 14px;
}

.qts-hero p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.qts-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.qts-card,
.qts-status-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.qts-card {
    max-width: 620px;
    margin: 0 auto;
}

.qts-alert {
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 700;
}

.qts-alert.success {
    background: #ecfdf5;
    color: #15803d;
}

.qts-alert.error {
    background: #fef2f2;
    color: #dc2626;
}

.qts-field {
    margin-bottom: 18px;
}

.qts-field label {
    display: block;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 8px;
}

.qts-field input {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
}

.qts-submit-btn {
    width: 100%;
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.qts-submit-btn:hover {
    background: #16a34a;
}

.qts-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.qts-head span {
    color: #64748b;
    font-weight: 800;
}

.qts-head h2 {
    color: #0f172a;
    margin-top: 5px;
}

.qts-status-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.qts-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.qts-status-badge.approved {
    background: #dcfce7;
    color: #166534;
}

.qts-status-badge.rejected {
    background: #fee2e2;
    color: #991b1b;
}

.qts-status-badge.converted {
    background: #dbeafe;
    color: #1e40af;
}

.qts-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 24px;
}

.qts-info-grid div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
}

.qts-info-grid span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
}

.qts-info-grid strong {
    color: #0f172a;
}

.qts-admin-box,
.qts-order-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
}

.qts-admin-box h3,
.qts-order-box h3 {
    color: #0f172a;
    margin-bottom: 12px;
}

.qts-admin-box p,
.qts-order-box p {
    color: #475569;
    margin-bottom: 8px;
}

.qts-message {
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.qts-message.pending {
    background: #fffbeb;
    color: #92400e;
}

.qts-message.approved {
    background: #ecfdf5;
    color: #166534;
}

.qts-message.rejected {
    background: #fef2f2;
    color: #991b1b;
}

.qts-message.converted {
    background: #eff6ff;
    color: #1e40af;
}

.qts-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.qts-actions.bottom {
    margin-top: 20px;
}

.qts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 900;
}

.qts-btn.primary {
    background: #16a34a;
    color: #ffffff;
}

.qts-btn.outline {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.qts-btn.dark {
    background: #111827;
    color: #ffffff;
}

@media (max-width: 768px) {
    .qts-hero h1 {
        font-size: 34px;
    }

    .qts-info-grid {
        grid-template-columns: 1fr;
    }

    .qts-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .qts-card,
    .qts-status-card {
        padding: 24px;
        border-radius: 20px;
    }

    .qts-actions {
        flex-direction: column;
    }

    .qts-btn {
        width: 100%;
    }
}


/* ===============================
   Unified Track Page Safe CSS
================================ */

.trx-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trx-badge {
    display: inline-block;
    background: #dcfce7;
    color: #065f46;
    border: 1px solid #86efac;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.trx-hero {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 35%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 85px 20px;
    color: #ffffff;
    text-align: center;
}

.trx-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 14px;
}

.trx-hero p {
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.trx-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.trx-alert {
    max-width: 760px;
    margin: 0 auto 24px;
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 700;
}

.trx-alert.error {
    background: #fef2f2;
    color: #dc2626;
}

.trx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.trx-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.trx-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: #ecfdf5;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.trx-icon.quote {
    background: #eff6ff;
    color: #2563eb;
}

.trx-icon svg {
    width: 30px;
    height: 30px;
}

.trx-card h2 {
    color: #0f172a;
    font-size: 28px;
    margin-bottom: 10px;
}

.trx-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.trx-field {
    margin-bottom: 18px;
}

.trx-field label {
    display: block;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 8px;
}

.trx-field input {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: 0.2s ease;
}

.trx-field input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

.trx-submit-btn {
    width: 100%;
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.trx-submit-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.trx-submit-btn.quote:hover {
    background: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .trx-hero h1 {
        font-size: 36px;
    }

    .trx-grid {
        grid-template-columns: 1fr;
    }

    .trx-card {
        padding: 24px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .trx-hero {
        padding: 70px 16px;
    }

    .trx-section {
        padding: 55px 16px;
    }

    .trx-hero h1 {
        font-size: 31px;
    }
}

/* Track Toggle */

.trx-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.trx-toggle-btn {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.trx-toggle-btn.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.trx-toggle-btn:hover {
    background: #16a34a;
    color: #ffffff;
}


/* ===============================
   Tracking Result Premium
================================ */

.trr-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 34px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.trr-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.trr-head span {
    color: #64748b;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.trr-head h2 {
    color: #0f172a;
    margin: 0;
}

.trr-status {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: capitalize;
}

.trr-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.trr-status.processing {
    background: #dbeafe;
    color: #1e40af;
}

.trr-status.completed {
    background: #dcfce7;
    color: #166534;
}

.trr-status.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.trr-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.trr-info-grid div {
    background: #f8fafc;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.trr-info-grid span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 6px;
}

.trr-info-grid strong {
    color: #0f172a;
}

.trr-payment.paid {
    color: #16a34a;
}

.trr-payment.pending {
    color: #b45309;
}

.trr-payment.failed {
    color: #dc2626;
}

.trr-payment.cancelled {
    color: #991b1b;
}

/* Timeline */
.trr-timeline {
    border-left: 3px solid #e5e7eb;
    margin: 32px 0;
    padding-left: 22px;
}

.trr-step {
    margin-bottom: 22px;
    position: relative;
}

.trr-step:last-child {
    margin-bottom: 0;
}

.trr-step span {
    position: absolute;
    left: -31px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #e5e7eb;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #e5e7eb;
}

.trr-step.done span {
    background: #22c55e;
    box-shadow: 0 0 0 2px #22c55e;
}

.trr-step h4 {
    color: #0f172a;
    margin-bottom: 4px;
}

.trr-step p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Invoice Box */
.trr-invoice-box {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.trr-invoice-box h3 {
    color: #166534;
    margin-bottom: 10px;
}

.trr-invoice-box p {
    color: #166534;
    margin-bottom: 12px;
}

/* Failed Payment Box */
.trr-failed-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.trr-failed-box h3 {
    color: #b91c1c;
    margin-bottom: 8px;
}

.trr-failed-box p {
    color: #7f1d1d;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Buttons */
.trr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.2s ease;
    border: none;
    cursor: pointer;
}

.trr-btn.primary {
    background: #111827;
    color: #ffffff;
}

.trr-btn.primary:hover {
    background: #16a34a;
    color: #ffffff;
}

.trr-btn.outline {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #ffffff;
}

.trr-btn.outline:hover {
    background: #111827;
    color: #ffffff;
}

.trr-btn.retry {
    background: #dc2626;
    color: #ffffff;
}

.trr-btn.retry:hover {
    background: #b91c1c;
    color: #ffffff;
}

/* Actions */
.trr-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .trr-card {
        padding: 24px;
        border-radius: 20px;
    }

    .trr-info-grid {
        grid-template-columns: 1fr;
    }

    .trr-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .trr-actions {
        flex-direction: column;
    }

    .trr-btn {
        width: 100%;
    }
}



/* ===============================
   Client Logos Premium
================================ */

.client-section {
    background: #020617;
    padding: 55px 20px;
    overflow: hidden;
}

.trusted-text {
    text-align: center;
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 30px;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: logoScroll 28s linear infinite;
    padding-left: 20px; /* small breathing space */
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    width: 155px;
    height: 82px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex: 0 0 auto;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-item img {
    max-width: 120px;
    max-height: 54px;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .client-section {
        padding: 45px 16px;
    }

    .logo-track {
        gap: 16px;
    }

    .logo-item {
        width: 130px;
        height: 72px;
        border-radius: 15px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 46px;
    }
}


/* Portfolio */
.portfolio-card {
    height: 180px;
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}

/* Testimonial */
.client-avatar {
    width: 50px;
    height: 50px;
    background: #111827;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* FAQ */
.faq-a {
    display: none;
    padding: 10px 0;
    color: #64748b;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-q {
    cursor: pointer;
    font-weight: 700;
}

/* ===============================
   Homepage Testimonial Clean CSS
================================ */

.combo-box.testimonial-box {
    min-height: auto !important;
    height: auto !important;
}

.testimonial-box .combo-head {
    margin-bottom: 20px;
}

.home-testimonial-list {
    display: grid;
    gap: 16px;
}

.home-testimonial-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 20px;
}

.home-testimonial-message-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.home-quote-icon {
    color: #8b5cf6;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    margin-top: -2px;
    flex: 0 0 auto;
}

.home-testimonial-message {
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.home-stars {
    color: #facc15;
    font-size: 14px;
    letter-spacing: 3px;
    margin: 8px 0 16px 44px;
}

.home-testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 44px;
}

.home-testimonial-client img,
.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.client-avatar {
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.home-testimonial-client strong {
    color: #ffffff;
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.home-testimonial-client span {
    color: #cbd5e1;
    font-size: 13px;
}

.combo-grid {
    align-items: start;
}

/* Mobile */
@media (max-width: 640px) {
    .home-testimonial-card {
        padding: 18px;
    }

    .home-stars,
    .home-testimonial-client {
        margin-left: 0;
    }

    .home-testimonial-message-wrap {
        flex-direction: column;
        gap: 4px;
    }
}


/* ===============================
   Homepage Portfolio Dynamic
================================ */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.portfolio-card-link {
    display: block;
    text-decoration: none;
}

.portfolio-card {
    position: relative;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.10);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
    color: #ffffff;
}

.portfolio-overlay span {
    display: inline-block;
    font-size: 12px;
    color: #22c55e;
    font-weight: 800;
    margin-bottom: 4px;
}

.portfolio-overlay h4 {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

.portfolio-empty {
    grid-column: 1 / -1;
    color: #cbd5e1;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 190px;
    }
}


/* =========================================================
   FINAL MOBILE NAVBAR FIX
========================================================= */

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #061126;
}

.nav-inner {
    position: relative;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
}

@media (max-width: 992px) {
    .nav-inner {
        width: calc(100% - 32px);
        padding: 16px 0;
    }

    .nav-toggle {
        display: block !important;
    }

    .nav-right {
        display: none !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 76px !important;
        left: 16px !important;
        right: 16px !important;
        width: auto !important;

        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;

        padding: 14px !important;
        background: #020617 !important;
        border: 1px solid rgba(255,255,255,0.10) !important;
        border-radius: 18px !important;
        box-shadow: 0 24px 60px rgba(0,0,0,0.45) !important;
        z-index: 100000 !important;
    }

    .nav-menu.mobile-open {
        display: flex !important;
    }

    .nav-menu a {
        display: block !important;
        width: 100% !important;
        padding: 14px 12px !important;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        text-align: left !important;
    }

    .nav-menu a:last-child {
        border-bottom: none !important;
    }


/* FINAL MOBILE NAV BASIC */
@media (max-width: 992px) {
    .nav-toggle {
        display: block !important;
    }

    .nav-right {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-menu.mobile-open {
    display: flex !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    background: #020617 !important;
    padding: 14px !important;
    border-radius: 18px !important;
    z-index: 999999 !important;
}
    }
	
	.nav-inner {
    position: relative;
}

    .nav-menu.mobile-open a {
        color: #fff !important;
        padding: 14px 12px !important;
    }
}


.brand-logo-img {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.brand-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0;
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand strong {
    display: block;
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 2px;
}

.footer-brand-img {
    width: 52px;
    height: 52px;
}



/* Service Details About Section Fix */
.sdx-about {
    background: #ffffff !important;
    color: #0f172a !important;
}

.sdx-about h2 {
    color: #0f172a !important;
    font-size: 36px;
    margin: 14px 0 18px;
}

.sdx-about p {
    color: #475569 !important;
    font-size: 16px;
    line-height: 1.9;
    max-width: 900px;
}

/* Custom page */

.custom-page-hero {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 35%),
                linear-gradient(180deg, #050816 0%, #020617 100%);
    padding: 85px 20px;
    text-align: center;
}

.custom-page-container {
    max-width: 1050px;
    margin: 0 auto;
}

.custom-page-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin: 16px 0 0;
}

.custom-page-section {
    background: #f8fafc;
    padding: 75px 20px;
}

.custom-page-card {
    background: #ffffff;
    color: #475569;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 36px;
    line-height: 1.9;
    font-size: 16px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.custom-page-card h1,
.custom-page-card h2,
.custom-page-card h3 {
    color: #0f172a;
}

@media (max-width: 640px) {
    .custom-page-hero h1 {
        font-size: 34px;
    }

    .custom-page-card {
        padding: 24px;
        border-radius: 20px;
    }
}


