/* 
    Premium Graphic Design Agency - Hero Section
    Google Font: Poppins
*/

:root {
    /* Brand Colors */
    --color-primary: #5B5CEB;
    --color-purple: #7C4DFF;
    --color-blue: #3B82F6;

    /* Background Colors */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;

    /* Text Colors */
    --text-dark: #0F172A;
    --text-gray: #475569;
    --text-light: #94A3B8;

    /* UI Elements */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-pill: 50px;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

/* ==================================================
   Hero Section & Background
   ================================================== */
.hero-section {
    position: relative;
    padding: 80px 0 100px;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Mesh, Glows & Patterns */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at 0% 0%, rgba(91, 92, 235, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(124, 77, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
    z-index: 0;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.4;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: var(--color-primary);
    top: -100px;
    right: -50px;
}

.glow-2 {
    width: 550px;
    height: 550px;
    background: var(--color-purple);
    bottom: -150px;
    right: 15%;
    opacity: 0.25;
}

.glow-3 {
    width: 350px;
    height: 350px;
    background: var(--color-blue);
    top: 30%;
    left: -100px;
    opacity: 0.15;
}

.dot-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

/* Geometric Decorations */
.geo-shape {
    position: absolute;
    border: 2px solid rgba(91, 92, 235, 0.1);
    z-index: 0;
}

.geo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 15%;
    left: 45%;
}

.geo-cross {
    width: 40px;
    height: 40px;
    bottom: 25%;
    left: 5%;
    border: none;
    background: linear-gradient(rgba(124, 77, 255, 0.1) 0%, rgba(124, 77, 255, 0.1) 100%), linear-gradient(rgba(124, 77, 255, 0.1) 0%, rgba(124, 77, 255, 0.1) 100%);
    background-size: 2px 100%, 100% 2px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==================================================
   Left Column: Content
   ================================================== */
.hero-badge {
    background: var(--bg-white);
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-badge .icon {
    margin-right: 8px;
    font-size: 16px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.text-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--color-primary);
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 95%;
}

/* Social Proof */
.social-proof {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.social-proof .stars {
    color: #F59E0B;
    letter-spacing: 2px;
    margin-right: 6px;
}

.social-proof .proof-text {
    opacity: 0.8;
}

/* Service Pills */
.service-pill {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.service-pill:hover {
    transform: translateY(-2px);
}

.service-pill i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 16px;
}

/* CTA Buttons */
.btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(91, 92, 235, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(91, 92, 235, 0.4);
    color: var(--bg-white);
}

.btn-secondary-subtle {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 24px;
}

.btn-secondary-subtle:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Statistics Row */
.stats-row {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 25px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    background: rgba(15, 23, 42, 0.08);
}

/* ==================================================
   Right Column: Premium Creative Workspace
   ================================================== */
.visual-wrapper {
    position: relative;
    height: 720px;
    width: 100%;
}

/* SVG Connector Lines */
.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connector-line {
    stroke: rgba(91, 92, 235, 0.15);
    stroke-width: 1.5;
    stroke-dasharray: 5 5;
}

.connector-dot {
    fill: var(--color-primary);
    opacity: 0.3;
}

/* Base Glass Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(255, 255, 255, 0.8) inset;
    position: absolute;
}

/* Shared wireframe helper */
.wire-line {
    border-radius: 4px;
    background: rgba(15, 23, 42, 0.07);
}

/* ============================================================
   CENTRAL BOARD ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Brand Identity Presentation
   ============================================================ */
.board-center {
    width: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 26px 28px;
    border-radius: 10px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.14), 0 1px 2px rgba(255, 255, 255, 0.9) inset;
}

/* Top bar */
.board-topbar {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 14px;
}

.board-dots {
    display: flex;
    gap: 6px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #EF4444;
}

.dot-yellow {
    background: #F59E0B;
}

.dot-green {
    background: #10B981;
}

.board-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
}

.board-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-gray);
    cursor: pointer;
}

/* Row 1: Logo hero */
.bboard-hero {
    padding: 16px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 14px;
}

.bboard-logo-mark {
    width: 52px;
    height: 52px;
    position: relative;
    flex-shrink: 0;
}

.lm-shape {
    position: absolute;
    border-radius: 50%;
}

.lm-s1 {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    top: 0;
    left: 0;
}

.lm-s2 {
    width: 28px;
    height: 28px;
    background: var(--color-purple);
    bottom: 0;
    right: 0;
    opacity: 0.9;
}

.lm-s3 {
    width: 18px;
    height: 18px;
    background: #3B82F6;
    bottom: 6px;
    left: 6px;
    opacity: 0.7;
}

.bboard-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.bboard-brand-tagline {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 2px;
}

.bboard-status {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.bboard-status i {
    margin-right: 4px;
}

/* Panels */
.bboard-panel {
    background: rgba(248, 250, 252, 0.9);
    border-radius: 12px;
    padding: 14px;
    flex: 1;
}

.bboard-panel-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Color palette inside board */
.bpal-chip {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 4px 6px;
    min-width: 0;
}

.bpal-chip-label {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Courier New', monospace;
}

/* Typography inside board */
.btypo-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.btypo-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 4px;
}

.btypo-scale {
    margin-top: 4px;
}

.btypo-w {
    font-size: 13px;
    color: var(--text-dark);
    background: rgba(15, 23, 42, 0.04);
    padding: 2px 8px;
    border-radius: 6px;
}

/* Business Card inside board */
.bboard-bizcard-wrap {
    flex: 3;
}

.bizcard-face {
    border-radius: 8px;
    overflow: hidden;
    height: 80px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.bizcard-front {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 8px;
}

.bizcard-left-stripe {
    width: 6px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-purple) 100%);
    flex-shrink: 0;
}

.bizcard-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
}

.bizcard-title {
    font-size: 9px;
    color: var(--color-primary);
    font-weight: 600;
}

.bizcard-detail {
    font-size: 8px;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.bizcard-detail i {
    color: var(--color-primary);
    margin-right: 4px;
    font-size: 7px;
}

.bizcard-logo-sm {
    position: relative;
    width: 24px;
    height: 24px;
}

.lm-sm-s1 {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    top: 0;
    left: 0;
}

.lm-sm-s2 {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-purple);
    bottom: 0;
    right: 0;
}

.bizcard-back {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    height: 60px;
}

.bizcard-back-logo {
    position: relative;
    width: 36px;
    height: 36px;
}

.lm-b-s1 {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    left: 0;
}

.lm-b-s2 {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    bottom: 0;
    right: 0;
}

/* Flyer inside board */
.bboard-flyer-preview {
    flex: 2;
}

.flyer-prev-wrap {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.flyer-prev-header {
    height: 12px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
}

.flyer-prev-img {
    height: 55px;
    background: linear-gradient(135deg, #CBD5E1, #94A3B8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.flyer-prev-cta {
    font-size: 8px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Brand Guidelines bar at bottom */
.bboard-guidelines {
    background: linear-gradient(135deg, rgba(91, 92, 235, 0.06) 0%, rgba(124, 77, 255, 0.06) 100%);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(91, 92, 235, 0.1);
}

.guidelines-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.guidelines-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.guidelines-sub {
    font-size: 11px;
    color: var(--text-gray);
}

.guidelines-progress {
    text-align: right;
}

.progress-bar-wrap {
    width: 80px;
    height: 6px;
    background: rgba(91, 92, 235, 0.1);
    border-radius: 3px;
    margin-bottom: 4px;
}

.progress-bar-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
    border-radius: 3px;
}

.guidelines-pct {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
}


/* ============================================================
   SATELLITE CARDS
   ============================================================ */
.sat-card {
    border-radius: var(--radius-md);
    padding: 16px;
    z-index: 8;
}

.sat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* SAT 1: Color Swatches ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Top Left */
.sat-swatches {
    top: 4%;
    left: 0;
    width: 220px;
    z-index: 9;
}

.swatches-row .sw {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
}

.sw-hex-row .sw-hex {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
}

/* SAT 2: Logo Concept ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Top Right */
.sat-logo {
    top: 2%;
    right: 1%;
    width: 200px;
    z-index: 7;
}

.logo-canvas {
    height: 80px;
    border-radius: 10px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    background-color: rgba(248, 250, 252, 0.8);
}

.logo-mark-lg {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.lm-lg-s1 {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-primary);
    top: 0;
    left: 0;
}

.lm-lg-s2 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-purple);
    bottom: 0;
    right: 0;
    opacity: 0.9;
}

.lm-lg-s3 {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3B82F6;
    bottom: 8px;
    left: 8px;
    opacity: 0.7;
}

.logo-wordmark .lw-brand {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.logo-wordmark .lw-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-var {
    width: 48px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lv-dark {
    background: var(--text-dark);
}

.lv-light {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.lv-mono {
    background: #94A3B8;
}

.lv-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

/* SAT 3: Business Card ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Middle Left */
.sat-bc {
    top: 38%;
    left: -3%;
    width: 200px;
    z-index: 11;
}

.sat-bc-preview .sat-bc-card {
    background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
    border-radius: 8px;
    height: 80px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.sat-bc-stripe {
    width: 8px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-purple));
    flex-shrink: 0;
}

.sat-bc-content {
    padding: 10px 12px;
    flex: 1;
}

.sat-bc-logo-mark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
}

/* SAT 4: Brand Book ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Middle Right */
.sat-brandbook {
    top: 36%;
    right: 0;
    width: 180px;
    z-index: 9;
}

.brandbook-preview {
    display: flex;
    height: 100px;
    gap: 0;
}

.bb-spine {
    width: 16px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-purple));
    border-radius: 4px 0 0 4px;
    flex-shrink: 0;
}

.bb-cover {
    flex: 1;
    background: var(--text-dark);
    border-radius: 0 4px 4px 0;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.bb-logo-area {
    position: relative;
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
}

.bb-shape {
    position: absolute;
    border-radius: 50%;
}

.bb-s1 {
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    top: 0;
    left: 0;
}

.bb-s2 {
    width: 16px;
    height: 16px;
    background: var(--color-purple);
    bottom: 0;
    right: 0;
    opacity: 0.8;
}

.bb-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.bb-edition {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-weight: 600;
}

/* SAT 5: Typography ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Bottom Left */
.sat-typo {
    bottom: 6%;
    left: 2%;
    width: 210px;
    z-index: 8;
}

.sty-display {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.sty-abc {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.sty-abc.lower {
    font-weight: 400;
}

.sty-abc.nums {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--text-light);
}

/* SAT 6: Brochure ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Bottom Right */
.sat-brochure {
    bottom: 4%;
    right: 0;
    width: 210px;
    z-index: 8;
}

.brochure-preview .bro-page {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 90px;
}

.bro-cover-gfx {
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
}

.bro-wire-block {
    margin: 6px;
    height: 6px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 3px;
}

.bro-inner-img {
    height: 35px;
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
}

.bro-wire-sm {
    height: 5px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 3px;
    width: 80%;
    margin: 4px 6px;
}

.bro-back-stripe {
    height: 100%;
    width: 8px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-purple));
    float: left;
}

/* Decorative Elements */
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(91, 92, 235, 0.12);
    z-index: 0;
    pointer-events: none;
}

.deco-ring-1 {
    width: 180px;
    height: 180px;
    top: -5%;
    left: 30%;
}

.deco-ring-2 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 8%;
    border-color: rgba(124, 77, 255, 0.15);
}

.deco-dot-cluster {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(91, 92, 235, 0.25) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
}

.ddc-1 {
    width: 80px;
    height: 60px;
    top: 15%;
    right: 22%;
}

.ddc-2 {
    width: 60px;
    height: 50px;
    bottom: 18%;
    left: 22%;
}

.deco-plus {
    position: absolute;
    font-size: 20px;
    font-weight: 300;
    z-index: 0;
    color: rgba(91, 92, 235, 0.2);
    pointer-events: none;
    line-height: 1;
}

.deco-plus-1 {
    top: 52%;
    left: 22%;
    font-size: 28px;
}

.deco-plus-2 {
    top: 22%;
    right: 24%;
    font-size: 22px;
}

/* ==================================================
   Floating Animations
   ================================================== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatCenter {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

.float-slow {
    animation: float 7s ease-in-out infinite;
}

.float-medium {
    animation: float 5.5s ease-in-out infinite;
}

.float-fast {
    animation: float 4s ease-in-out infinite;
}

/* Central board always uses translate-preserving animation */
.board-center.float-slow {
    animation: floatCenter 7s ease-in-out infinite;
}

.delay-1 {
    animation-delay: -2s;
}

.delay-2 {
    animation-delay: -4s;
}

/* ==================================================
   Responsive Adjustments
   ================================================== */
@media (max-width: 1399px) {
    .sat-bc {
        left: 0;
    }

    .sat-brandbook {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 50px;
    }

    .board-center {
        width: 400px;
    }

    .visual-wrapper {
        transform: scale(0.82);
        transform-origin: center right;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 46px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .stats-row {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        display: block !important;
    }

    .visual-wrapper {
        height: 640px;
        transform: scale(0.75);
        transform-origin: top center;
    }

    .sat-bc {
        left: 5%;
    }

    .sat-brochure {
        right: 5%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem !important;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
    }

    .visual-wrapper {
        height: 540px;
        transform: scale(0.62);
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .visual-wrapper {
        height: 440px;
        transform: scale(0.48);
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */

/* Section Wrapper */
.about-section {
    padding: 120px 0 100px;
    background-color: var(--bg-white);
    position: relative;
}

/* Background Glows */
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

.about-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    opacity: 0.05;
    top: -80px;
    left: -80px;
}

.about-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-purple);
    opacity: 0.05;
    bottom: -100px;
    right: -60px;
}

.about-dot-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

/* ============================================================
   LEFT: Image Composition
   ============================================================ */
.about-img-composition {
    position: relative;
    /* padding-bottom: 60px; */
    padding-right: 20px;
}

/* Decorative elements behind images */
.img-deco-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(91, 92, 235, 0.3) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 0;
    border-radius: 8px;
}

.img-deco-ring {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(124, 77, 255, 0.12);
    z-index: 0;
}

/* Large Primary Image */
.about-img-primary {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* ---- Studio Scene (inside primary image) ---- */
.studio-scene {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.studio-toolbar {
    height: 40px;
    background: #1E293B;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.tb-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.td-r { background: #EF4444; }
.td-y { background: #F59E0B; }
.td-g { background: #10B981; }
.tb-label { font-size: 11px; color: rgba(255, 255, 255, 0.5); font-weight: 500; }

.studio-canvas {
    background: #F1F5F9;
    min-height: 280px;
}

/* Side panels */
.studio-panel {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.studio-layers { width: 130px; }
.studio-props  { width: 110px; }

.sp-heading {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-gray);
    /* text-transform: uppercase; */
    letter-spacing: 0.8px;
}

.sp-layer {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 5px 8px;
    border-radius: 6px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.sp-layer.active {
    background: rgba(91, 92, 235, 0.08);
    color: var(--color-primary);
    font-weight: 600;
}

.sp-layer i { font-size: 10px; opacity: 0.7; }

/* Properties panel */
.prop-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.prop-label { font-size: 10px; font-weight: 600; color: var(--text-gray); }
.prop-value { font-size: 10px; font-weight: 600; color: var(--text-dark); }
.prop-swatch { width: 20px; height: 20px; border-radius: 4px; background: linear-gradient(135deg, var(--color-primary), var(--color-purple)); }
.prop-divider { height: 1px; background: rgba(15, 23, 42, 0.06); }
.mini-swatch { width: 18px; height: 18px; border-radius: 4px; }

/* Canvas center */
.studio-main-canvas {
    background: #FFFFFF;
    border-radius: 10px;
    min-height: 200px;
    border: 1.5px dashed rgba(91, 92, 235, 0.15);
    padding: 20px;
}

.canvas-design-preview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo mark on canvas */
.canvas-logo-mark { position: relative; width: 56px; height: 56px; flex-shrink: 0; }
.clm-shape { position: absolute; border-radius: 50%; }
.clm-shape.s1 { width: 40px; height: 40px; background: var(--color-primary); top: 0; left: 0; }
.clm-shape.s2 { width: 30px; height: 30px; background: var(--color-purple); bottom: 0; right: 0; opacity: 0.9; }
.clm-shape.s3 { width: 20px; height: 20px; background: var(--color-blue); bottom: 10px; left: 10px; opacity: 0.7; }

.canvas-brand-text { flex: 1; }
.cbt-name { font-size: 18px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; line-height: 1; }
.cbt-sub  { font-size: 10px; font-weight: 500; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* Selection handles on canvas */
.selection-box {
    position: absolute;
    top: -12px; left: -12px;
    right: -12px; bottom: -12px;
    border: 1.5px solid var(--color-primary);
    border-radius: 6px;
    pointer-events: none;
}
.selection-handle {
    position: absolute;
    width: 8px; height: 8px;
    background: white;
    border: 1.5px solid var(--color-primary);
    border-radius: 2px;
    z-index: 2;
}
.sh-tl { top: -16px; left: -16px; }
.sh-tr { top: -16px; right: -16px; }
.sh-bl { bottom: -16px; left: -16px; }
.sh-br { bottom: -16px; right: -16px; }

/* Status bar */
.studio-statusbar {
    height: 34px;
    background: #1E293B;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.studio-statusbar i { margin-right: 4px; font-size: 9px; }

/* Small Secondary Image */
.about-img-secondary {
    position: absolute;
    bottom: 0;
    left: -30px;
    z-index: 5;
    width: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
    border: 3px solid #FFFFFF;
    background: #FFFFFF;
}

/* ---- Team / Chat Scene (inside secondary image) ---- */
.team-scene { padding: 18px; }

.team-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    flex-shrink: 0;
}

.ta-1 { background: linear-gradient(135deg, var(--color-primary), var(--color-purple)); }
.ta-2 { background: linear-gradient(135deg, #F59E0B, #EF4444); margin-left: -10px; }
.ta-3 { background: linear-gradient(135deg, #10B981, var(--color-blue)); margin-left: -10px; }

.team-name { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.team-sub  { font-size: 10px; color: var(--text-gray); font-weight: 500; }

.team-comment { display: flex; }
.tc-left  { justify-content: flex-start; }
.tc-right { justify-content: flex-end; }

.tc-bubble {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    background: #F1F5F9;
    border-radius: 12px 12px 12px 2px;
    padding: 8px 12px;
    max-width: 90%;
    line-height: 1.4;
}

.tc-bubble.tc-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    color: #FFFFFF;
    border-radius: 12px 12px 2px 12px;
}

/* Floating Achievement Badge */
.img-float-badge {
    position: absolute;
    top: 30px;
    right: -15px;
    z-index: 6;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.ifb-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    flex-shrink: 0;
}

.ifb-num   { font-size: 20px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.ifb-label { font-size: 11px; font-weight: 500; color: var(--text-gray); margin-top: 2px; white-space: nowrap; }

/* ============================================================
   RIGHT: Content
   ============================================================ */
.about-content { padding-left: 10px; }

/* Section Label */
.section-label {
    gap: 12px;
}

.label-accent-line {
    display: inline-block;
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
    flex-shrink: 0;
}

.label-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* About Heading (matches hero style) */
.about-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* About Description */
.about-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 90%;
}

/* Achievement Cards */
.achievement-card {
    background: var(--bg-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    padding: 24px 28px;
    flex: 1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 160px;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.ach-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(91, 92, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 14px;
}

.ach-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.ach-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
}

/* ============================================================
   About Section Responsive
   ============================================================ */
@media (max-width: 1199px) {
    .about-heading { font-size: 44px; }
    .about-img-secondary { left: -10px; }
}

@media (max-width: 991px) {
    .about-section { padding: 100px 0 80px; text-align: center; }

    .about-content { padding-left: 0; }
    .about-description { max-width: 100%; margin-left: auto; margin-right: auto; }

    /* Centre label on tablet/mobile */
    .section-label { justify-content: center; }
    .achievement-cards { justify-content: center; }

    .about-img-composition { padding-right: 0; padding-bottom: 80px; }
    .about-img-secondary { left: 50%; transform: translateX(-50%); bottom: -10px; }
    .img-float-badge { right: 5px; }

    .about-heading { font-size: 40px; }
}

@media (max-width: 767px) {
    .about-heading { font-size: 34px; }
    .about-description { font-size: 16px; }
    .achievement-card { min-width: 0; }
    .studio-layers, .studio-props { display: none; }
    .studio-canvas { padding: 16px; }
    .about-img-secondary { width: 190px; }
}

@media (max-width: 575px) {
    .about-section { padding: 80px 0 60px; }
    .about-heading { font-size: 28px; line-height: 1.2; }
    .achievement-cards { flex-direction: column; }
    .img-float-badge { right: 0; top: 20px; }
    .about-img-composition { padding-bottom: 100px; }
}

/* ============================================================
   OUR SERVICES SECTION
   ============================================================ */

/* Section Wrapper */
.sec-services {
    padding: 120px 0 100px;
    background-color: #ffffff;
    position: relative;
}

/* Background Glows */
.ss-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.ss-glow--1 {
    width: 450px;
    height: 450px;
    background: var(--color-primary);
    opacity: 0.05;
    top: -100px;
    right: -80px;
}

.ss-glow--2 {
    width: 350px;
    height: 350px;
    background: var(--color-purple);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
}

/* Dot Pattern Background */
.ss-dots {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.035) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

/* ============================================================
   LEFT COLUMN / SIDEBAR
   ============================================================ */
.ss-sidebar__inner {
    position: sticky;
    top: 100px;
}

.ss-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.ss-lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ============================================================
   SERVICES GRID ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 2ÃƒÆ’Ã¢â‚¬â€2 with thin borders
   ============================================================ */
.ss-grid {
    /* border: 1px solid rgba(226, 232, 240, 0.9); */
    border-radius: 5px;
    overflow: hidden;
    background: var(--bg-white);
    /* box-shadow: 0 8px 40px rgba(15, 23, 42, 0.04); */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Grid rows */
.ss-grid__row {
    border-bottom: 1px solid rgb(108 85 245 / 20%);
}
.ss-grid__row:last-child {
    border-bottom: none;
}

/* Service item (card) */
.ss-item {
    position: relative;
    flex: 1;
    padding: 32px 30px 24px;
    /* background: #f6f6f6; */
    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Vertical divider between items in same row */
.ss-item:first-child {
    border-right: 1px solid rgb(108 85 245 / 20%);
}

/* Hover state */
.ss-item:hover {
}

/* Large faded number ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â top right */
.ss-item__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 64px;
    font-weight: 700;
    color: rgb(15 23 42 / 6%);
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
    transition: color 0.3s ease;
    font-style: italic;
}
.ss-item:hover .ss-item__num {
    color: rgba(91, 92, 235, 0.06);
}

/* Outline icon box */
.ss-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 30px;
    border: 1.5px solid rgba(91, 92, 235, 0.15);
    background: rgba(91, 92, 235, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 22px;
    margin-bottom: 18px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.ss-item:hover .ss-item__icon {
    background: rgba(91, 92, 235, 0.08);
    border-color: rgba(91, 92, 235, 0.3);
}

/* Item title */
.ss-item__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* Item description */
.ss-item__desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================================
   MOCKUP BASE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â shared by all 4 image mockups
   ============================================================ */
.ss-mockup {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: var(--bg-light);
    transition: transform 0.3s ease;
}
.ss-item:hover .ss-mockup {
    transform: translateY(-2px);
}

/* -------- MOCKUP 01: Logo Canvas -------- */
.ss-mockup--logo {
    height: 110px;
    position: relative;
}

.sm-canvas {
    width: 100%;
    height: 100%;
    padding: 12px;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    background-color: #F8FAFC;
}

.sm-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(248, 250, 252, 0.6));
    pointer-events: none;
}

.sm-logo-mark { position: relative; width: 46px; height: 46px; flex-shrink: 0; }
.sm-lm__s1 { position: absolute; width: 32px; height: 32px; border-radius: 50%; background: var(--color-primary); top: 0; left: 0; }
.sm-lm__s2 { position: absolute; width: 24px; height: 24px; border-radius: 50%; background: var(--color-purple); bottom: 0; right: 0; opacity: 0.9; }
.sm-lm__s3 { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--color-blue); bottom: 8px; left: 8px; opacity: 0.7; }

.sm-logo-text { flex: 1; }
.sm-brand-name { font-size: 16px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; line-height: 1; }
.sm-brand-sub  { font-size: 9px; font-weight: 500; color: var(--text-gray); text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }

/* -------- MOCKUP 02: Business Card -------- */
.ss-mockup--card {
    height: 110px;
    display: flex;
    gap: 8px;
    padding: 10px;
    background: #F1F5F9;
}

.sm-card-front {
    flex: 2;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.sm-card-stripe {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-purple) 100%);
}

.sm-card-body { flex: 1; }
.sm-card-logo { position: relative; width: 20px; height: 20px; margin-bottom: 6px; }
.sm-cl__s1 { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--color-primary); top: 0; left: 0; }
.sm-cl__s2 { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--color-purple); bottom: 0; right: 0; }
.sm-card-name  { font-size: 9px; font-weight: 700; color: var(--text-dark); }
.sm-card-role  { font-size: 8px; font-weight: 600; color: var(--color-primary); }
.sm-card-email { font-size: 7px; color: var(--text-gray); }
.sm-card-email i { font-size: 6px; margin-right: 3px; color: var(--color-primary); }

.sm-card-back {
    flex: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    height: 100%;
}
.sm-card-back-mark { position: relative; width: 28px; height: 28px; }
.sm-cbm__s1 { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); top: 0; left: 0; }
.sm-cbm__s2 { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); bottom: 0; right: 0; }

/* -------- MOCKUP 03: Print / Brochure spread -------- */
.ss-mockup--print {
    height: 110px;
    padding: 10px;
    background: #F1F5F9;
}

.sm-spread { height: 100%; }

.sm-page {
    border-radius: 6px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.sm-page--cover { flex: 1.2; }
.sm-page--inner { flex: 1; }
.sm-page--back  { flex: 0.8; }

.sm-page-bar       { height: 10px; background: linear-gradient(90deg, var(--color-primary), var(--color-purple)); }
.sm-page-img       { flex: 1; background: linear-gradient(135deg, #CBD5E1, #94A3B8); }
.sm-page-inner-img { height: 36px; background: linear-gradient(135deg, #E2E8F0, #CBD5E1); }

.sm-page-back-strip { height: 100%; width: 6px; background: linear-gradient(180deg, var(--color-primary), var(--color-purple)); float: left; }
.sm-page-back-mark  { padding: 8px 12px; }
.sm-pbm__s1 { width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); opacity: 0.3; }
.sm-pbm__s2 { width: 12px; height: 12px; border-radius: 50%; background: var(--color-purple); opacity: 0.3; margin-top: 4px; }

/* Shared wireframe lines */
.sm-line       { height: 5px; border-radius: 3px; background: rgba(15, 23, 42, 0.07); }
.sm-line--lg   { width: 80%; }
.sm-line--md   { width: 60%; }
.sm-line--sm   { width: 40%; }

/* -------- MOCKUP 04: Brand Identity / Stationery Set -------- */
.ss-mockup--brand {
    height: 110px;
    padding: 10px;
    background: #F1F5F9;
}

.sm-stationery { height: 100%; }

/* Stationery: mini business card */
.sm-stat-card {
    width: 80px;
    height: 100%;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.sm-stat-card__stripe { height: 4px; background: linear-gradient(90deg, var(--color-primary), var(--color-purple)); }
.sm-stat-card__body   { padding: 8px; flex: 1; }
.sm-stat-card__logo   { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-purple)); }

/* Stationery: brand book */
.sm-stat-book {
    height: 100%;
    display: flex;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.sm-stat-book__spine { width: 10px; background: linear-gradient(180deg, var(--color-primary), var(--color-purple)); flex-shrink: 0; }
.sm-stat-book__cover { background: var(--text-dark); padding: 8px 10px; width: 60px; display: flex; flex-direction: column; position: relative; }
.sm-stat-book__mark  { position: relative; width: 22px; height: 22px; margin-bottom: 6px; }
.sm-sbm__s1 { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); top: 0; left: 0; }
.sm-sbm__s2 { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--color-purple); bottom: 0; right: 0; opacity: 0.8; }
.sm-stat-book__title { font-size: 9px; font-weight: 700; color: rgba(255, 255, 255, 0.85); line-height: 1.2; }

/* Stationery: letterhead */
.sm-stat-letter {
    flex: 1;
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}
.sm-stat-letter__header { height: 8px; background: linear-gradient(90deg, var(--color-primary), var(--color-purple)); }
.sm-stat-letter__body   { flex: 1; }

/* Stationery: palette */
.sm-stat-palette { flex-shrink: 0; }
.sm-swatch       { width: 14px; height: 20px; border-radius: 4px; flex-shrink: 0; }
.sm-swatch--1    { background: var(--color-primary); }
.sm-swatch--2    { background: var(--color-purple); }
.sm-swatch--3    { background: var(--text-dark); }
.sm-swatch--4    { background: #F8FAFC; border: 1px solid #E2E8F0; }

/* ============================================================
   Services Responsive
   ============================================================ */
@media (max-width: 1199px) {
    .ss-title   { font-size: 40px; }
    .ss-item    { padding: 24px 22px 20px; }
    .ss-item__num { font-size: 52px; }
}

@media (max-width: 991px) {
    .sec-services      { padding: 100px 0 80px; }
    .ss-sidebar__inner { position: static; text-align: center; align-items: center; }
    .ss-title          { font-size: 38px; }
    .ss-grid           { margin-top: 40px; }
    .ss-item__num      { font-size: 48px; }
}

@media (max-width: 767px) {
    .ss-grid__row         { flex-direction: column; }
    .ss-item:first-child  { border-right: none; border-bottom: 1px solid rgba(226, 232, 240, 0.9); }
    .ss-title             { font-size: 34px; }
    .ss-item__num         { font-size: 44px; top: 12px; right: 16px; }
    .ss-mockup            { height: 100px; }
}

@media (max-width: 575px) {
    .sec-services   { padding: 80px 0 60px; }
    .ss-title       { font-size: 28px; line-height: 1.2; }
    .ss-item        { padding: 20px 18px 16px; }
    .ss-item__icon  { width: 40px; height: 40px; font-size: 18px; }
    .ss-item__title { font-size: 16px; }
}

/* ============================================================
   OUR DESIGN PROCESS SECTION
   ============================================================ */

/* Section Wrapper */
.sec-process {
    padding: 120px 0 100px;
    background-color: #f9f9f9;
    position: relative;
}

/* Background Glows */
.sp-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.sp-glow--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    opacity: 0.04;
    top: -50px;
    left: -50px;
}

.sp-glow--2 {
    width: 450px;
    height: 450px;
    background: var(--color-purple);
    opacity: 0.04;
    bottom: -100px;
    right: -100px;
}

/* Dot Pattern */
.sp-dots {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

/* Section Header */
.sp-header {
    margin-bottom: 80px;
}

.sp-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.sp-subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Process Cards Row */
.sp-cards-row {
    position: relative;
    z-index: 2;
}

/* Timeline Connector */
.sp-timeline {
    position: absolute;
    top: 85px; /* Aligns with center of icons */
    left: 15px;
    right: 15px;
    height: 1px;
    border-top: 2px dashed rgba(226, 232, 240, 0.8);
    z-index: 0;
}

/* Base Card */
.sp-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.sp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(91, 92, 235, 0.2);
}

/* Active / Highlighted Card */
.sp-card:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    border: none;
    box-shadow: 0 15px 40px rgba(91, 92, 235, 0.25), 0 0 40px rgba(124, 77, 255, 0.15);
}

.sp-card:hover {
    box-shadow: 0 20px 50px rgba(91, 92, 235, 0.35), 0 0 50px rgba(124, 77, 255, 0.2);
}

/* Step Label */
.sp-card__step {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sp-card:hover .sp-card__step {
    color: #fff
}

/* Icon Container */
.sp-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 92, 235, 0.08), rgba(124, 77, 255, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 24px;
    margin-bottom: 28px;
    transition: transform 0.3s ease;
}

.sp-card:hover .sp-card__icon-wrap {
    transform: scale(1.08);
    background: #fff;
}

.sp-card--active .sp-card__icon-wrap {
}

/* Card Title */
.sp-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sp-card:hover .sp-card__title {
    color: #fff
}

/* Card Description */
.sp-card__desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.sp-card:hover .sp-card__desc {
    color: #fff
}

/* Watermark Number */
.sp-card__watermark {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.02);
    line-height: 1;
    letter-spacing: -4px;
    user-select: none;
    z-index: -1;
}

.sp-card:hover .sp-card__watermark {
    color: #ffffff17;
}

/* ============================================================
   Process Responsive
   ============================================================ */
@media (max-width: 1199px) {
    .sp-heading { font-size: 40px; }
    .sp-card { padding: 35px 25px; }
    .sp-card__title { font-size: 20px; }
    .sp-card__watermark { font-size: 80px; }
}

@media (max-width: 991px) {
    .sec-process { padding: 100px 0 80px; }
    .sp-heading { font-size: 38px; }
    .sp-header { margin-bottom: 50px; }
}

@media (max-width: 767px) {
    .sp-heading { font-size: 34px; }
    .sp-card { padding: 30px 20px; }
}

@media (max-width: 575px) {
    .sec-process { padding: 80px 0 60px; }
    .sp-heading { font-size: 28px; line-height: 1.2; }
    .sp-header { margin-bottom: 40px; }
}


/* ============================================================
   MARQUEE BANNER SECTION
   ============================================================ */
.sec-marquee {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using an inspiring creative team/workspace placeholder image */
    background-image: url('../images/why_choose.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.marquee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Deep dark blue overlay for contrast */
    z-index: 2;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    display: flex;
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 70s linear infinite;
    will-change: transform;
}

.sec-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.m-text {
    font-family: 'Poppins', sans-serif;
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    padding: 0 10px;
}

.text-filled {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.marquee-star {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 40px;
    display: flex;
    align-items: center;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   Marquee Responsive
   ============================================================ */
@media (max-width: 1199px) {
    .m-text {
        font-size: 70px;
    }

    .marquee-star {
        font-size: 40px;
        margin: 0 30px;
    }
}

@media (max-width: 991px) {
    .sec-marquee {
        height: 150px;
    }

    .m-text {
        font-size: 60px;
    }

    .marquee-star {
        font-size: 35px;
        margin: 0 20px;
    }

    .text-outline {
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
        text-stroke: 1.5px rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 767px) {
    .sec-marquee {
        height: 120px;
    }

    .m-text {
        font-size: 42px;
    }

    .marquee-star {
        font-size: 24px;
        margin: 0 15px;
    }

    .text-outline {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
        text-stroke: 1px rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 575px) {
    .m-text {
        font-size: 36px;
    }
}



/* ============================================================
   FAQ SECTION
   ============================================================ */
.sec-faq {
    padding: 120px 0;
    position: relative;
    background: #fefefe; /* Assuming this is a light premium color like #F8FAFC */
    overflow: hidden;
}

/* Background Effects */
.faq-bg-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(at 0% 0%, rgba(91, 92, 235, 0.03) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(124, 77, 255, 0.03) 0px, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.faq-dots {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.faq-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.faq-glow--1 {
    width: 500px; height: 500px;
    background: var(--color-primary);
    top: -100px; left: -200px;
}

.faq-glow--2 {
    width: 400px; height: 400px;
    background: var(--color-purple);
    bottom: -100px; right: -100px;
}

/* --------------------------------------------------
   LEFT COLUMN (Heading & Support Card)
   -------------------------------------------------- */
.faq-left-col {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.faq-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.faq-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Support Card */
.faq-support-card-wrapper {
    position: relative;
    z-index: 2;
}

.faq-support-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    /* background: linear-gradient(135deg, rgba(91, 92, 235, 0.15), rgba(124, 77, 255, 0.15)); */
    filter: blur(20px);
    border-radius: 30px;
    z-index: 0;
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

.faq-support-card-wrapper:hover .faq-support-glow {
    /* opacity: 1; */
    /* background: linear-gradient(135deg, rgba(91, 92, 235, 0.25), rgba(124, 77, 255, 0.25)); */
}

.faq-support-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 13px 13px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.08);
}

.faq-support-icon {
    width: 58px;
    height: 58px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    color: #FFF;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 24px;
}

.faq-support-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-support-desc {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.faq-trust-list li {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.faq-trust-list li i {
    font-size: 12px;
}

/* --------------------------------------------------
   RIGHT COLUMN (Accordion)
   -------------------------------------------------- */
.faq-accordion {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion-item {
    background: var(--bg-white);
    border: 1px solid rgb(91 92 235 / 37%);
    border-radius: 10px !important; /* Override bootstrap */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgb(91 92 235 / 37%) !important;
}

.faq-accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 10px rgb(15 23 42 / 6%);
    border: 1px solid rgb(91 92 235 / 37%);
}

.faq-accordion-item:hover .faq-icon-wrap {
    transform: scale(1.05);
}

/* Opened state styling */
.faq-accordion-item:has(.faq-accordion-button:not(.collapsed)) {
    /* border-left: 4px solid var(--color-primary); */
}

/* Button Overrides */
.faq-accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.6s ease;
}

.faq-number {
    font-size: 20px;
    font-weight: 700;
    color: rgb(36 101 255 / 35%); /* very low opacity */
    margin-right: 20px;
    transition: color 0.3s ease;
}

.faq-accordion-button:not(.collapsed) .faq-number {
    color: rgba(91, 92, 235, 0.15);
}

.faq-question-text {
    flex: 1;
}

.faq-accordion-button:not(.collapsed) {
    color: var(--color-primary);
}

.faq-accordion-button::after {
    display: none; /* Hide default chevron */
}

/* Custom Icon Wrap */
.faq-icon-wrap {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(91, 92, 235, 0.06);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0; margin-left: 20px;
    transition: background 0.3s ease;
}

.faq-icon-plus, .faq-icon-minus {
    position: absolute;
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s ease;
}

/* Closed state */
.faq-accordion-button.collapsed .faq-icon-minus { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.faq-accordion-button.collapsed .faq-icon-plus { opacity: 1; transform: rotate(0) scale(1); }

/* Opened state */
.faq-accordion-button:not(.collapsed) .faq-icon-minus { opacity: 1; transform: rotate(0) scale(1); color: #FFF; }
.faq-accordion-button:not(.collapsed) .faq-icon-plus { opacity: 0; transform: rotate(90deg) scale(0.5); color: #FFF; }
.faq-accordion-button:not(.collapsed) .faq-icon-wrap { background: linear-gradient(135deg, var(--color-primary), var(--color-purple)); }

/* Answer Body */
.faq-accordion-body {
    padding: 0 25px 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
    border-top: none; /* override BS */
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.accordion-collapse.show .faq-accordion-body {
    opacity: 1;
    transform: translateY(0);
}

.faq-bottom-cta {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
}
.faq-bottom-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}
.faq-bottom-link:hover {
    color: var(--color-purple);
}

/* ============================================================
   FAQ Responsive
   ============================================================ */
@media (max-width: 1199px) {
    .faq-heading { font-size: 40px; }
    .faq-accordion-button { font-size: 20px; padding: 24px; }
    .faq-accordion-body { padding: 0 24px 24px; }
    .faq-left-col { padding-right: 20px; }
}

@media (max-width: 991px) {
    .sec-faq { padding: 100px 0; }
    .faq-left-col { padding-right: calc(var(--bs-gutter-x) * .5); text-align: center; margin-bottom: 50px !important; }
    .faq-support-card { flex-direction: column; align-items: center !important; text-align: center; max-width: 500px; margin: 0 auto; }
    .faq-support-icon { margin-right: 0; margin-bottom: 20px; }
}

@media (max-width: 767px) {
    .faq-heading { font-size: 34px; }
    .faq-accordion-button { font-size: 18px; padding: 20px; }
    .faq-accordion-body { padding: 0 20px 20px; font-size: 15px; }
    .faq-support-card .btn { width: 100%; }
}

@media (max-width: 575px) {
    .sec-faq { padding: 80px 0; }
    .faq-heading { font-size: 28px; line-height: 1.2; }
    .faq-accordion-button { font-size: 16px; padding: 16px; }
    .faq-accordion-body { padding: 0 16px 16px; }
    .faq-icon-wrap { width: 28px; height: 28px; margin-left: 15px; }
    .faq-support-card { padding: 24px; }
}


/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.sec-why {
    padding: 120px 0;
    background-color: var(--bg-white);
}

/* Background Effects */
.why-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
}

.why-glow--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -10%;
    left: -10%;
}

.why-glow--2 {
    width: 400px;
    height: 400px;
    background: var(--color-purple);
    bottom: -10%;
    right: -10%;
}

.why-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.why-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(91, 92, 235, 0.1);
    z-index: 0;
    pointer-events: none;
}
.why-deco-circle--1 {
    width: 150px;
    height: 150px;
    top: 5%;
    left: 15%;
}
.why-deco-circle--2 {
    width: 100px;
    height: 100px;
    bottom: 8%;
    right: 20%;
}

/* Header */
.why-heading {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.why-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 600px;
}

.why-trust {
    margin-top: 10px;
}

.trust-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: var(--color-primary);
}

.trust-dot {
    color: rgba(15, 23, 42, 0.2);
    font-size: 10px;
}

/* Feature Cards */
.why-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    /* box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04); */
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 1px; /* Border thickness */
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(91, 92, 235, 0.1), rgba(124, 77, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: 24px;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover .why-card__icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    color: #fff;
    box-shadow: 0 10px 20px rgba(91, 92, 235, 0.2);
}

.why-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-card__highlight {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(91, 92, 235, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(91, 92, 235, 0.1);
}

.why-card__highlight i {
    color: var(--color-primary);
}

/* Center Image */
.why-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    z-index: 2;
    height: 570px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.why-image-glow-bg {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .why-heading { font-size: 44px; }
}

@media (max-width: 991px) {
    .sec-why { padding: 100px 0; }
    .why-heading { font-size: 40px; }
    .why-image-wrapper { height: 400px; margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .why-heading { font-size: 34px; }
    .why-image-wrapper { height: 350px; }
}

@media (max-width: 575px) {
    .sec-why { padding: 80px 0; }
    .why-heading { font-size: 28px; }
    .why-image-wrapper { height: 300px; }
}