: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;
}
.hero-title{
    font-size: 60px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.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;
}

/* ==========================================================================
   SAME-TO-SAME HERO RECONSTRUCTION
   ========================================================================== */
.content-hero {
    background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.05) 0%, #fff 50%),
                radial-gradient(circle at 0% 100%, rgba(249, 115, 22, 0.03) 0%, #fff 50%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-content-left .hero-title {
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 25px;
    text-align: left;
}

.hero-content-left .hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

.watch-video-btn {
    cursor: pointer;
    transition: transform 0.3s;
}

.watch-video-btn:hover {
    transform: translateX(5px);
}

.v-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 14px;
    transition: all 0.3s;
}

.watch-video-btn:hover .v-play-btn {
    background: var(--purple);
    color: #fff;
}

/* Dashboard Visuals */
.dashboard-visual-container {
    z-index: 10;
}

.dash-stat-box {
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    min-height: 175px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dash-stat-box.box-blue {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-stat-box.box-purple {
    background: #4338ca;
    padding: 0; 
}

.dash-stat-box.box-purple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsb-val {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 0;
}

.dsb-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.9;
    text-transform: capitalize;
}

.dsb-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.dsb-bar {
    flex: 1;
    background: rgba(255,255,255,0.25);
    border-radius: 3px;
}

.dsb-bar:last-child {
    background: #fff;
}

.dash-graph-box {
    box-shadow: 0 15px 40px rgba(0,0,0,0.04) !important;
}

.dash-feature-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    min-height: 480px; /* Increased height */
    display: flex;
    flex-direction: column;
}

.dash-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.12) !important;
}

.df-thumb {
    padding: 20px;
}

.df-thumb img {
    height: 220px; /* Slightly larger image */
    object-fit: cover;
}

.df-info {
    padding: 30px 25px 40px; /* Increased padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.df-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
}

.badge-growth {
    font-size: 13px;
    font-weight: 800;
}

.df-text {
    font-size: 14px;
    line-height: 1.5;
}

.df-form .form-control {
    font-size: 13px;
    font-weight: 500;
}

.dash-bg-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .content-hero {
        padding: 60px 0 80px;
    }
    .hero-content-left {
        text-align: center;
        margin-bottom: 40px;
    }
    .hero-content-left .hero-title, 
    .hero-content-left .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
}

.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.bounce-in-delay {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Search Engine Hero Badge */
.hero-subheading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subheading i {
    color: var(--orange);
    font-size: 14px;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1200px) {
    .lgu-floating-play { left: 50%; transform: translateX(-50%); top: -40px; }
    .float-play { animation: none; }
}

@media (max-width: 575px) {
    .lgu-body { padding: 25px; }
    .lts-val { font-size: 36px; }
    .lgu-chart-area { height: 120px; }
    .lgu-cards-grid { grid-template-columns: 1fr; }
    .lgu-title { display: none; }
}


@media (max-width: 1200px) {
    .yt-card-views { left: 0; }
    .yt-card-subs { right: 0; }
}

/* ==========================================================================
   ABOUT SECTION (ENHANCED)
   ========================================================================== */
.content-about {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-title {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.about-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Feature Grid Cards */
.about-points-grid {
    margin-top: 30px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
}

.ac-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ac-icon.purple-light { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.ac-icon.orange-light { background: rgba(249, 115, 22, 0.1); color: var(--orange); }
.ac-icon.red-light { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.ac-content {
    flex: 1;
}

.ac-h {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.ac-p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   A/B TESTING DASHBOARD MOCKUP
   ========================================================================== */
/* ==========================================================================
   ABOUT SECTION REDESIGN
   ========================================================================== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.ai-mockup-wrapper img {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    border: 10px solid #fff;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ai-mockup-wrapper img:hover {
    transform: scale(1.03) rotate(1deg);
}

.ai-float-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

.float-1 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.15);
    top: -50px;
    left: -50px;
    animation: floatAnim 6s ease-in-out infinite;
}

.float-2 {
    width: 250px;
    height: 250px;
    background: rgba(249, 115, 22, 0.1);
    bottom: -60px;
    right: -40px;
    animation: floatAnim 10s ease-in-out infinite reverse;
}

.about-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-text-box {
    position: relative;
    z-index: 2;
}
/* ==========================================================================
   WHY CHOOSE US SECTION (Centered Grid)
   ========================================================================== */
.content-why-choose {
    background: #fff;
    position: relative;
    z-index: 5;
}

.why-choose-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
}

.wcc-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 26px;
    color: var(--purple);
    transition: all 0.4s ease;
}

.why-choose-card:hover .wcc-icon {
    background: var(--purple);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.wcc-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.wcc-text {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .why-choose-card {
        padding: 30px 20px;
    }
}

.bounce-in-delay {
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@media (max-width: 991px) {
    .content-about .row {
        gap: 60px;
    }
    .about-text-box { padding-right: 0 !important; }
}
@media (max-width: 575px) {
    .abm-player { height: 160px; }
    .abm-test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .about-title {
        font-size: 32px;
    }
    .about-gif {
        max-width: 100%;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.content-services {
    background: #fbfbfc;
    position: relative;
    z-index: 1;
}

.content-section-title {
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #f97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.sc-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.sc-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sc-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 24px;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.content-why-us {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Optional subtle background element */
.content-why-us::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 60%);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.why-us-text {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.wu-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.1);
}

.wu-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.wu-card:hover .wu-icon {
    transform: scale(1.1);
}

.wu-icon.color-1,
.wu-icon.color-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.wu-icon.color-2,
.wu-icon.color-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.wu-icon.color-3,
.wu-icon.color-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.wu-icon.color-4,
.wu-icon.color-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.wu-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.wu-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .why-us-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .why-us-text .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .wu-card.mt-lg-5 {
        margin-top: 0 !important;
    }
}

@media (max-width: 575px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MODERN PROCESS SECTION (TIMELINE)
   ========================================================================== */
.modern-process {
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.0) 0%, rgba(139, 92, 246, 0.4) 20%, rgba(249, 115, 22, 0.4) 80%, rgba(249, 115, 22, 0.0) 100%);
    border-radius: 4px;
}

.timeline-row {
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-left {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-right {
    left: 50%;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 40px;
    right: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid var(--purple);
    box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.15);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-dot.dot-right {
    left: -14px;
    right: auto;
    border-color: var(--orange);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.15);
}

.timeline-row:hover .timeline-dot {
    transform: scale(1.35);
    background: var(--purple);
}

.timeline-row:hover .timeline-dot.dot-right {
    background: var(--orange);
}

.timeline-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    text-align: left;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0%;
    background: var(--purple);
    transition: height 0.5s ease;
}

.timeline-content.content-right::before {
    right: auto;
    left: 0;
    background: var(--orange);
}

.timeline-row:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.timeline-row:hover .timeline-content::before {
    height: 100%;
}

.t-num {
    font-size: 90px;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.04);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.t-num-right {
    font-size: 90px;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.04);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.timeline-row:hover .t-num {
    transform: scale(1.1) translateX(10px);
    color: rgba(139, 92, 246, 0.08);
}

.timeline-row:hover .t-num-right {
    transform: scale(1.1) translateX(-10px);
    color: rgba(249, 115, 22, 0.08);
}

.t-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.t-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .timeline-line {
        left: 40px;
    }

    .timeline-row {
        width: 100%;
        padding-left: 90px;
        padding-right: 0;
        left: 0 !important;
        margin-bottom: 40px !important;
        margin-top: 0 !important;
    }

    .timeline-dot,
    .timeline-dot.dot-right {
        left: 26px !important;
        right: auto !important;
    }

    .timeline-content.content-right::before,
    .timeline-content::before {
        left: 0 !important;
        right: auto !important;
    }

    .t-num-right {
        right: 20px !important;
        left: auto !important;
    }

    .t-num {
        right: 20px !important;
        left: auto !important;
    }
}

@media (max-width: 575px) {
    .timeline-content {
        padding: 30px 20px;
    }

    .timeline-row {
        padding-left: 70px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot,
    .timeline-dot.dot-right {
        left: 8px !important;
        width: 24px;
        height: 24px;
        border-width: 4px;
        top: 32px;
    }
}

/* ==========================================================================
   RESULTS / BENEFITS SECTION (BOXES LEFT, IMAGE RIGHT)
   ========================================================================== */
.content-benefits {
    position: relative;
    overflow: hidden;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    background: #f3efff;
    color: #8b5cf6;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
}

.impact-badge::before {
    content: "";
    width: 20px;
    height: 2px;
    background: #f97316;
    margin-right: 12px;
}

.benefits-intro h2 {
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.benefits-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.benefit-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.08);
    /* slight purple tint */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle gradient line at the bottom that expands on hover */
.benefit-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #9b51e0, #f25555);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-box:hover::after {
    width: 100%;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.benefit-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.08) rotate(-5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(249, 115, 22, 0.15));
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-box h4 {
    font-size: 19px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.benefit-box:hover h4 {
    color: #8b5cf6;
}

.benefit-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.benefits-image-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
}

.benefits-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #b54998;
    height: 100%;
}

@media (max-width: 991px) {
    .benefits-intro {
        text-align: center;
        padding-right: 0;
    }

    .impact-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-image-wrapper {
        margin-top: 40px;
    }
}

/* ==========================================================================
   INDUSTRIES SECTION (LIGHT PREMIUM REVERTED)
   ========================================================================== */
.content-industries {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.max-w-700 {
    max-width: 700px;
}

/* Section Header Extras */
.content-industries .impact-badge {
    background: #f3efff;
    color: #8b5cf6;
    border: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

/* The Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 50px auto 0;
}

/* White Cards */
.ind-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 40px 30px;
    width: calc(25% - 18px);
    /* 4 per row */
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.ind-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
}

/* Hover Accent Line */
.ind-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #f97316);
    transition: all 0.4s ease;
    border-radius: 0 0 3px 3px;
    transform: translateX(-50%);
}

.ind-card:hover::after {
    width: 60%;
}

.ind-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.ind-card:hover .ind-icon-wrapper {
    transform: scale(1.1);
}

.ind-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Typography */
.ind-title {
    font-size: 19px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.ind-card:hover .ind-title {
    color: #8b5cf6;
}

.ind-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   INQUIRY SECTION (FORM + IMAGE)
   ========================================================================== */
.content-query-section {
    background: #fbfbfc;
    /* Subtle off-white to separate sections */
}

/* Form Card Styling */
.query-form-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.form-main-title {
    font-size: 38px;
    font-weight: 900;
    color: #111;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.form-sub-text {
    font-size: 16px;
    color: #666;
    max-width: 450px;
}

/* Form Elements */
.query-main-form .form-label {
    font-size: 14px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.query-main-form .form-control,
.query-main-form .form-select {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid #eee;
    font-size: 15px;
    font-weight: 500;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.query-main-form .form-control:focus,
.query-main-form .form-select:focus {
    border-color: #8b5cf6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
    outline: none;
}

.query-main-form textarea.form-control {
    resize: none;
}

/* Submit Button */
.query-submit-btn {
    width: 100%;
    padding: 16px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #8b5cf6, #f97316);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.query-submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.35);
}

/* Image Wrapper & Animation */
.query-image-wrapper {
    padding: 20px;
}

.floating-img-box {
    animation: floatingEffect 4s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .query-form-card {
        padding: 50px 40px;
    }

    .form-main-title {
        font-size: 32px;
    }
}
@media (max-width: 1024px) {
   .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}
.service-card:nth-child(3) {
    grid-column: span 1 ;
}
.service-card:nth-child(4) {
    grid-column: span 3 ;
}
}

@media (max-width: 991px) {
    .query-image-wrapper {
        margin-top: 40px;
    }

    .query-form-card {
        border-radius: 30px;
    }
    .about-visual-box .visual-inner{
        display: none;
    }
    .ind-card {
   
    width: calc(50% - 18px);
   
}
}
@media (max-width: 767px) {
   .services-grid {
    grid-template-columns: auto !important;
}
.service-card:nth-child(3) {
    grid-column: span 1 ;
}
.service-card:nth-child(4) {
    grid-column: span 1 ;
}
}
@media (max-width: 575px) {
    .query-form-card {
        padding: 40px 25px;
    }

    .form-main-title {
        font-size: 28px;
    }
    .ind-card {
   
    width: calc(100% - 18px);
   
}
}

@keyframes floatingEffect {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}




/* ==========================================================================
   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;
    }
}