:root {
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --orange: #f97316;
    --teal: #14b8a6;
    --dark: #0f0f1a;
    --text-muted: #4b5563;
}

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

body {
    background: #fff;
    overflow-x: hidden;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.ht-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   LOGO HERO SECTION
   ========================================================================== */

.logo-hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    /* background: #0f0f1a; */
}

.logo-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/website-development2/hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

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

.logo-hero-shapes::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(109, 44, 249, 0.05) 0%, rgba(148, 59, 196, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.logo-hero .container {
    /* max-width: 1240px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-col-content {
    flex: 1;
    min-width: 450px;
}

.hero-col-visual {
    flex: 1;
    min-width: 450px;
    position: relative;
}

.hero-subheading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple);
    margin-bottom: 24px;
    background: rgba(139, 92, 246, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}

.hero-subheading::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--orange);
}

.hero-title {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 40px;
    max-width: 600px;
}

.video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 8px solid #fff;
    aspect-ratio: 1/1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   TRUSTED BY SECTION
   ========================================================================== */

.logo-trusted-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.trusted-header .trusted-title {
    font-size: 16px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logo-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Marquee logic */
.logo-marquee {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-content img {
    height: 40px;
    width: auto;
    margin: 0 50px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.marquee-content img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

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

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

/* Pause animation on hover */
.logo-marquee:hover {
    animation-play-state: paused;
}

/* ==========================================================================
   LOGO ABOUT SECTION
   ========================================================================== */

.logo-about-section {
    background: #fff;
}

.logo-about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.logo-about-img-wrap img {
    width: 100%;
    height: auto;
    transition: transform 1s ease;
}

.logo-about-img-wrap:hover img {
    transform: scale(1.05);
}

.about-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--orange);
}

.about-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -1px;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.logo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--purple);
}

.f-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-col-content,
    .hero-col-visual {
        min-width: 100%;
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .video-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .logo-features {
        grid-template-columns: 1fr;
    }

    .ps-lg-5 {
        padding-left: 15px !important;
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }

    .about-title {
        font-size: 28px;
    }

    .hero-cta-group {
        justify-content: center;
    }
}

/* ==========================================================================
   LABEL DESIGN SECTION (DARK THEME)
   ========================================================================== */

.label-design-section {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: 120px 0;
}

.label-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85); /* Dark overlay for better text contrast */
    z-index: 1;
}

.label-design-section .container {
    position: relative;
    z-index: 2;
}

.label-design-section .container {
    position: relative;
    z-index: 1;
}

.label-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.label-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
}

/* Tags */
.label-tags {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.label-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.label-tag i {
    font-size: 20px;
    color: #fff;
}

/* Glassmorphic Highlight */
.label-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    max-width: 600px;
}

.highlight-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-inner i {
    font-size: 22px;
    color: #3b82f6;
    /* Blue check as in reference */
    margin-top: 3px;
}

.highlight-inner p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.label-cta {
    min-width: 240px;
    background: linear-gradient(to right, #1e40af, #2563eb) !important;
    /* Premium blue gradient */
    border: none !important;
    padding: 16px 32px !important;
}

/* Feature Grid (2x2) */
.label-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 25px; */
    padding-right: 30px;
}

.l-feature-box {
    background: rgba(255, 255, 255, 0.05);
    /* backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); */
    border: 1px solid rgb(255 255 255 / 44%);
    /* border-radius: 32px; */
    padding: 35px 25px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}


.l-f-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #8b5cf62b, #f9731630);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.l-feature-box h3 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.l-feature-box p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .label-feature-grid {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .label-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .label-design-section {
        background-position: left center;
    }

    .label-design-section::before {
        background: rgba(15, 15, 26, 0.9);
    }

    .label-content {
        text-align: center;
    }

    .label-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .label-tags {
        justify-content: center;
    }

    .label-highlight {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   PRODUCT LABEL SCALE SECTION
   ========================================================================== */

.label-scale-section {
    background: #fff;
    /* Clean white background */
}

.scale-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
}

.scale-subtitle {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
}

/* Premium Modern Cards */
.scale-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 40px;
    padding: 60px 40px;
    position: relative;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.scale-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scale-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(109, 44, 249, 0.08);
    border-color: rgba(139, 92, 246, 0.1);
}

.scale-card:hover::before {
    opacity: 1;
}

.card-stagger {
    margin-top: 50px;
}

.featured-card {
    border-color: rgba(139, 92, 246, 0.1);
    background: #fdfdfd;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    z-index: 2;
}

/* Background Numbers */
.scale-card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-weight: 950;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

/* Feature Icons */
.scale-card-icon {
    width: 80px;
    height: 80px;
    background: #f8f7ff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--purple);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.scale-card:hover .scale-card-icon {
    background: var(--purple);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.card-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.card-divider {
    width: 40px;
    height: 3px;
    background: #eee;
    margin: 0 auto 25px;
    border-radius: 10px;
}

.card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 15px;
}

/* Responsive Stagger */
@media (max-width: 991px) {
    .card-stagger {
        margin-top: 0;
    }
    .scale-card {
        padding: 50px 30px;
    }
}

/* Card Content Structure */
.card-content {
    position: relative;
    z-index: 2;
    text-align: left;
    /* Modern left align */
}

.card-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--dark);
    letter-spacing: -1px;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--purple);
    margin-bottom: 30px;
}

.card-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--purple) 0%, transparent 100%);
    margin-bottom: 30px;
    width: 40px;
    margin-left: 0;
    border-radius: 2px;
}

.card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Premium Modern Button */
.scale-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 32px;
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scale-btn:hover {
    background: var(--purple);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.scale-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.scale-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .scale-card {
        padding: 60px 30px 40px;
    }
}

/* ==========================================================================
   LOGO DESIGN PROCESS SECTION (REDESIGNED)
   ========================================================================== */

.logo-process-section {
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* Left Side: Full Bleed Video */
.process-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: #000;
}

.process-video-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

/* Right Side: Content Wrapper */
.process-content-wrap {
    padding: 100px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.process-content-inner {
    padding-left: 60px;
    padding-right: 30px;
    /* max-width: 650px; */
}

.process-main-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.process-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* PROCESS STEP GRID (2x2) */
.process-step-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.process-step-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.process-step-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(109, 44, 249, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.psb-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 13px;
    font-weight: 800;
    color: var(--purple);
    background: #f5f3ff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.psb-icon {
    width: 60px;
    height: 60px;
    background: #f8faff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.process-step-box:hover .psb-icon {
    background: var(--purple);
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
}

.process-step-box h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.process-step-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .process-step-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .process-step-grid {
        grid-template-columns: 1fr;
    }
}

/* Connecting Dot Line */
.step-dot-line {
    position: absolute;
    left: 56px;
    top: 95px;
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(to bottom, #e2e8f0, #e2e8f0 4px, transparent 4px, transparent 8px);
}

@media (max-width: 991px) {
    .process-video-container {
        min-height: 400px;
    }

    .process-content-inner {
        padding: 60px 20px;
        max-width: 100%;
        text-align: center;
    }

    .modern-step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .modern-step-card:hover {
        transform: translateY(-10px);
    }

    .step-dot-line {
        display: none;
    }

    .step-num-wrap {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   LOGO PORTFOLIO SECTION
   ========================================================================== */

.logo-portfolio-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.logo-portfolio-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Section Header --- */
.portfolio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(139, 92, 246, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
}

.portfolio-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.portfolio-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 600px;
}

/* --- Tabs Wrapper --- */
.portfolio-tabs-wrap {
    margin-bottom: 40px;
}

.portfolio-tabs {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: none;
    position: relative;
}

/* Tab Buttons */
.ptab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.ptab-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.ptab-btn:hover {
    color: var(--purple);
}

.ptab-btn:hover i {
    transform: scale(1.2);
}

.ptab-btn.active {
    color: var(--purple);
    font-weight: 700;
}

/* Animated bottom indicator bar */
.ptab-indicator-bar {
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    position: relative;
    margin-top: 0;
}

.ptab-indicator {
    position: absolute;
    height: 3px;
    bottom: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #f63 -1.18%, #6d2cf9 96.14%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(109, 44, 249, 0.3);
}

/* --- Portfolio Panels --- */
.portfolio-panels {
    position: relative;
}

.portfolio-panel {
    display: none;
}

.portfolio-panel.active {
    display: block;
    animation: panelFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Logo Grid --- */
/* WEBSITE PORTFOLIO SHOWCASE */
.portfolio-grid-web {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pweb-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pweb-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(109, 44, 249, 0.1);
    border-color: rgba(139, 92, 246, 0.1);
}

.browser-header {
    background: #f8fafc;
    padding: 12px 18px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.b-dot.red { background: #ff5f57; }
.b-dot.yellow { background: #ffbd2e; }
.b-dot.green { background: #28c840; }

.pweb-img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.pweb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 6s ease-in-out;
}

.pweb-card:hover .pweb-img-wrap img {
    transform: translateY(-20%);
}

.pweb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.pweb-card:hover .pweb-overlay {
    opacity: 1;
}

.pweb-info h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.pweb-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Portfolio Tabs and Panels */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.ptab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.ptab-btn.active {
    color: var(--purple);
}

.portfolio-panels {
    margin-top: 50px;
}

.portfolio-panel {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.portfolio-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Portfolio */
@media (max-width: 1199px) {
    .portfolio-grid-web {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .portfolio-grid-web {
        grid-template-columns: 1fr;
    }
    .portfolio-tabs {
        flex-wrap: wrap;
        gap: 20px;
    }
    .pweb-img-wrap {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================================================================
   BUSINESS TOOLS SECTION (REDESIGNED)
   ========================================================================== */

.biz-tools-section {
    background: #fdfdfd;
    padding: 120px 0;
}

.biz-tools-header {
    max-width: 800px;
}

.biz-tools-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 950;
    color: var(--dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.biz-tools-sub {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

/* Slider wrapper */
.biz-tools-slider-wrap {
    position: relative;
    padding: 20px 0;
}

.biz-tools-track-outer {
    overflow: visible; /* To allow shadows and scaling to show */
    padding: 20px 0;
    margin: -20px 0;
}

/* Flex row of cards */
.biz-tools-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Individual Card - Premium Redesign */
.biz-tool-card {
    flex: 0 0 calc(25% - 18px); /* 4 columns on desktop */
    min-width: 280px;
    cursor: pointer;
    perspective: 1000px;
}

.btc-inner {
    position: relative;
    background: #fff;
    border-radius: 32px;
    padding: 40px 30px;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    z-index: 1;
}

.btc-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.biz-tool-card:hover .btc-inner {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(109, 44, 249, 0.15);
    border-color: transparent;
}

.biz-tool-card:hover .btc-inner::before {
    opacity: 1;
}

/* Icon Styling */
.btc-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--purple);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.biz-tool-card:hover .btc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotateY(180deg);
}

/* Content Styling */
.btc-label {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.btc-text {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.biz-tool-card:hover .btc-label,
.biz-tool-card:hover .btc-text {
    color: #fff;
}

/* Background Image Accent */
.btc-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    filter: grayscale(1);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.btc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.biz-tool-card:hover .btc-image {
    opacity: 0.15;
    transform: scale(1.2) translate(-10px, -10px);
    filter: grayscale(0);
}

/* Navigation Arrow Redesign */
.biz-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.biz-arrow:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.biz-arrow-prev {
    left: -27px;
}

.biz-arrow-next {
    right: -27px;
}

.biz-arrow:disabled {
    opacity: 0;
    visibility: hidden;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .biz-tool-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    .biz-arrow-prev { left: 0; }
    .biz-arrow-next { right: 0; }
}

@media (max-width: 991px) {
    .biz-tool-card {
        flex: 0 0 calc(50% - 12px);
    }
    .biz-tools-section { padding: 80px 0; }
}

@media (max-width: 767px) {
    .biz-tool-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
    .btc-inner { padding: 30px 25px; min-height: 320px; }
    .btc-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 20px; }
    .btc-label { font-size: 20px; }
}

/* ==========================================================================
   LOGO CTA SECTION
   ========================================================================== */


.logo-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(266deg, rgba(255, 102, 51, 0.08) -1.18%, rgba(109, 44, 249, 0) 96.14%);
    padding: 120px 0;
    text-align: center;

}

/* Floating glow orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: ctaOrbFloat 8s ease-in-out infinite alternate;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(109, 44, 249, 0.18);
    top: -150px;
    left: -150px;
    animation-duration: 9s;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -120px;
    right: -100px;
    animation-duration: 11s;
    animation-direction: alternate-reverse;
}

.cta-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 13s;
}

@keyframes ctaOrbFloat {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.15) translate(30px, -20px);
    }
}

.cta-orb-3 {
    animation-name: ctaOrbFloat3;
}

@keyframes ctaOrbFloat3 {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Two Column Layout */
.cta-two-col {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 60px; */
    align-items: center;
    padding: 0px 60px;


}

/* LEFT: Content column */
.cta-col-content {
    text-align: left;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 22px;
    border-radius: 50px;
}

.cta-badge i {
    color: #f97316;
    font-size: 12px;
}

/* Heading */
.cta-heading {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    /* color: #fff; */
    letter-spacing: -1.5px;
}

/* Gradient span */
.cta-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Sub-text */
.cta-subtext {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    max-width: 500px;
}

/* Button Group */
.cta-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(109, 44, 249, 0.35);
    position: relative;
    overflow: hidden;
}


.cta-btn-primary:hover {
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(109, 44, 249, 0.5);
}

.cta-btn-primary:hover::before {
    opacity: 1;
}

.cta-btn-primary i,
.cta-btn-primary span {
    position: relative;
    z-index: 1;
}

.cta-btn-primary i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}

/* Outline Button */
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgb(140 56 208);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-outline i {
    color: #f97316;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    /* color: #fff; */
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Mini Trust Pills */
.cta-trust-pills {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgb(145 58 199);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-trust-pill i {
    color: #fff;
    /* Green check */
}

/* RIGHT: Image column */
.cta-col-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cta-img-wrap {
    position: relative;
    width: 100%;
    /* max-width: 500px; */
    /* Soft floating animation for the image to make it premium */
    animation: ctaImgFloat 6s ease-in-out infinite alternate;
}

.cta-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@keyframes ctaImgFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

/* ==========================================================================
   CTA RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {
    .cta-two-col {
        padding: 50px 40px;
        gap: 40px;
    }

    .cta-heading {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .logo-cta-section {
        padding: 80px 0;
    }

    .cta-two-col {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
        gap: 50px;
    }

    .cta-col-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-subtext {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn-group {
        justify-content: center;
    }

    .cta-trust-pills {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cta-two-col {
        padding: 40px 20px;
    }

    .cta-heading {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .cta-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 28px;
    }
}

/* ==========================================================================
   LOGO CONTACT FORM SECTION
   ========================================================================== */

.logo_contact-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.logo_contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left: Info Side */
.logo_contact-info-inner {
    padding-right: 20px;
}

.logo_contact-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.logo_contact-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.logo_contact-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
}

.logo_contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo_cf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.logo_cf-icon {
    width: 48px;
    height: 48px;
    background: rgba(109, 44, 249, 0.1);
    color: #6d2cf9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.logo_cf-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.logo_cf-item p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Right: Form Form */
.logo_contact-box {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo_cb-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.logo_form {
    display: block;
}

.logo_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.logo_form-group {
    margin-bottom: 24px;
}

.logo_form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.logo_text-danger {
    color: #ef4444;
}

.logo_form-input,
.logo_form-select,
.logo_form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.logo_form-input:focus,
.logo_form-select:focus,
.logo_form-textarea:focus {
    outline: none;
    border-color: #6d2cf9;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 44, 249, 0.1);
}

.logo_form-textarea {
    resize: vertical;
    min-height: 120px;
}

.logo_form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(109, 44, 249, 0.25);
}

.logo_form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 44, 249, 0.4);
}

/* Responsive */
@media (max-width: 1199px) {
    .logo_contact-wrapper {
        gap: 40px;
    }

    .logo_contact-box {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .logo_contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .logo_contact-info-inner {
        padding-right: 0;
        text-align: center;
    }

    .logo_contact-features {
        align-items: center;
        text-align: left;
    }

    .logo_cf-item {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .logo_form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .logo_contact-box {
        padding: 30px 20px;
    }
}




/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testi-section {
    padding: 100px 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}


.top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
}

.eyebrow .dot2 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.eyebrow .dot3 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e5e7eb;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 2px;
}

.main-title {
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1.08;
}

.main-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lets-talk-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 6px;
}

.arc-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -4px;
}

.arc-row svg {
    width: 68px;
    opacity: 0.40;
}

.lets-talk-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lets-talk-text {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: var(--purple);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.contact-btn:hover {
    color: #fff;
    background: var(--purple);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.lets-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 320px;
    text-align: right;
}

.testi-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 22px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.rating-card_testi {
    background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
    border-radius: 24px;
    padding: 40px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(139, 92, 246, 0.10);
}

.rating-card_testi::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-20.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 180px;
    opacity: 0.20;
    pointer-events: none;
}

.big-rating {
    font-size: 96px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -6px;
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-right: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    z-index: 4;
}

.av2 {
    background: linear-gradient(135deg, #f97316, #fb923c);
    z-index: 3;
}

.av3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    z-index: 2;
}

.av4 {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    z-index: 1;
}

.client-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.client-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.rating-tagline {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testi-right {
    background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    border-radius: 24px;
    padding: 36px 32px 40px;
    position: relative;
    overflow: hidden;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s;
}

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

.card-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 30px;
    background: var(--purple);
    border-radius: 10px;
}



.card-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex: 1;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.c-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.c-avatar-fb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-info .c-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.author-info .c-role {
    font-size: 12px;
    color: var(--text-muted);
}

.card-rating {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.stars {
    display: flex;
    gap: 2px;
}

.st {
    width: 12px;
    height: 12px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
    background: #E5E7EB;
}

.nav-row {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.faq-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.05);
    top: -100px;
    left: -150px;
}

.faq-orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(20, 184, 166, 0.04);
    bottom: -150px;
    right: -100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
}

.faq-dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    position: relative;
}

.faq-dot-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

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

.faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.faq-title-grad {
    background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    border-radius: 2px;
    margin: auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #f0eeff;
    border-radius: 20px;
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
    border-color: var(--purple);
    background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s;
}

.faq-item.active .faq-question span {
    color: var(--purple);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f0ff;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--purple);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.faq-footer-cta {
    margin-top: 50px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-footer-cta p {
    margin: 0;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.faq-cta-link {
    color: var(--purple);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.faq-cta-link:hover {
    gap: 12px;
    color: var(--purple-dark);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media(max-width:1100px) {
    .testi-grid {
        grid-template-columns: 240px 1fr;
    }
}

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

    .rating-card {
        min-height: auto;
    }

    .lets-talk-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

@media(max-width:576px) {
    .testi-section {
        padding: 70px 0 0;
    }

    .big-rating {
        font-size: 72px;
    }

    .main-title {
        letter-spacing: -1px;
    }
}