/* =========================================================
   DEVITIVE IT SOLUTIONS - MODERN UI & GRAPHIC ENHANCEMENTS
   ========================================================= */

:root {
    --dev-primary: #384bff;
    --dev-primary-dark: #2234d8;
    --dev-secondary: #0b132b;
    --dev-accent: #00d2ff;
    --dev-text: #334155;
    --dev-bg-light: #f8fafc;
    --dev-card-border: rgba(226, 232, 240, 0.8);
    --dev-radius: 12px;
}

/* Global Slim Modern Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #384bff #ffffff;
}

::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #ffffff;
    border-left: 1px solid #f1f5f9;
}

::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #384bff;
    border-radius: 999px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #2234d8;
}

::-webkit-scrollbar-corner {
    background: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dev-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography & Links */
a {
    transition: all 0.25s ease-in-out;
}
a:hover {
    color: var(--dev-primary);
    text-decoration: none;
}

/* Header & Topbar Fixes */
.header-top-section {
    background: #080e21;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-top-wrapper .contact-list li {
    color: #94a3b8;
    font-size: 13.5px;
}
.header-top-wrapper .contact-list li i {
    color: var(--dev-primary);
    margin-right: 6px;
}
.header-top-wrapper .contact-list li a {
    color: #e2e8f0;
}
.header-top-wrapper .contact-list li a:hover {
    color: var(--dev-accent);
}

/* Sticky Header */
#header-sticky.header-3 {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.header-main .main-menu ul li > a {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    padding: 10px 16px;
}
.header-main .main-menu ul li.active > a,
.header-main .main-menu ul li:hover > a {
    color: var(--dev-primary);
}

/* =========================================================
   HERO BANNER & CURVE SHAPE FIX (100% VISIBILITY GUARANTEE)
   ========================================================= */

/* Eliminate the problematic 275px raster curve overlay that was covering buttons */
.hero-3 .bottom-shape,
.hero-section .bottom-shape {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-section.hero-3 {
    position: relative;
    background: #070d1e;
    overflow: hidden;
    min-height: 620px;
}

.hero-section.hero-3 .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-section.hero-3 .slider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 30%, rgba(56, 75, 255, 0.22) 0%, rgba(7, 13, 30, 0.95) 75%);
    z-index: 1;
}

.hero-section.hero-3 .slider-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 13, 30, 0.98) 0%, rgba(7, 13, 30, 0.88) 55%, rgba(7, 13, 30, 0.55) 100%);
    z-index: 2;
}

.hero-section.hero-3 .hero-content {
    position: relative;
    z-index: 25;
    padding: 125px 0 100px 0;
}

@media (max-width: 991px) {
    .hero-section.hero-3 .hero-content {
        padding: 90px 0 60px 0;
        text-align: center;
    }
}

/* Glowing Top Pill Badge */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 75, 255, 0.15);
    border: 1px solid rgba(0, 210, 255, 0.4);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #00d2ff;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 210, 255, 0.15);
}

.hero-badge-pill .pulse-dot {
    width: 9px;
    height: 9px;
    background: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d2ff;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

.hero-section.hero-3 .hero-content h1 {
    color: #ffffff;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.16;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

@media (max-width: 1200px) {
    .hero-section.hero-3 .hero-content h1 {
        font-size: 44px;
    }
}
@media (max-width: 991px) {
    .hero-section.hero-3 .hero-content h1 {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    .hero-section.hero-3 .hero-content h1 {
        font-size: 28px;
    }
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #ffffff 20%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section.hero-3 .hero-content p {
    color: #cbd5e1;
    font-size: 17.5px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 30px;
}

/* Hero Button Area - Guaranteed 100% visible & high z-index */
.hero-section.hero-3 .hero-button {
    position: relative;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .hero-section.hero-3 .hero-button {
        justify-content: center;
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, #384bff 0%, #1e3a8a 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(56, 75, 255, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 31;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(56, 75, 255, 0.6);
    background: linear-gradient(135deg, #4d60ff 0%, #2243b8 100%);
    color: #ffffff !important;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 31;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: #070d1e !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* Trust Proof Bar inside Hero */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

@media (max-width: 991px) {
    .hero-trust-bar {
        justify-content: center;
    }
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #cbd5e1;
}

.hero-trust-item i {
    color: #f59e0b;
}

.hero-trust-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #e2e8f0;
    font-weight: 600;
}

/* Hero Right Column Interactive Dashboard Preview Card */
.hero-tech-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(56, 75, 255, 0.35);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(56, 75, 255, 0.18);
    position: relative;
    z-index: 25;
    overflow: hidden;
}

.hero-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #384bff, #00d2ff, #a855f7);
}

.hero-tech-card .console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.hero-tech-card .console-dots {
    display: flex;
    gap: 6px;
}

.hero-tech-card .console-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-tech-card .console-dots span:nth-child(1) { background: #ef4444; }
.hero-tech-card .console-dots span:nth-child(2) { background: #f59e0b; }
.hero-tech-card .console-dots span:nth-child(3) { background: #10b981; }

.hero-tech-card .status-pill {
    font-size: 11.5px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-tech-card .status-pill .live-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseGlow 1.8s infinite;
}

.hero-tech-card .metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-tech-card .metric-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.25s ease;
}

.hero-tech-card .metric-box:hover {
    background: rgba(56, 75, 255, 0.12);
    border-color: rgba(56, 75, 255, 0.35);
    transform: translateY(-2px);
}

.hero-tech-card .metric-val {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-tech-card .metric-label {
    font-size: 11.5px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-tech-card .tech-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tech-card .tech-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Slider Controls (Array Buttons) Positioned Cleanly */
.hero-3 .array-button {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 35;
    display: flex;
    flex-direction: row;
    gap: 10px;
    left: auto;
    top: auto;
    transform: none;
}

.hero-3 .array-button button {
    width: 46px;
    height: 46px;
    line-height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-3 .array-button button:hover {
    background: var(--dev-primary);
    border-color: var(--dev-primary);
    color: #ffffff;
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .hero-3 .array-button {
        display: none;
    }
}

/* Subtle, Modern SVG Curve Divider pinned strictly to bottom with no interference */
.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38px;
    z-index: 4;
    pointer-events: none;
    line-height: 0;
}
.hero-bottom-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================================
   BRAND SHOWCASE SECTION
   ========================================================= */
.brand-showcase-section {
    background: #080e21;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
}
.brand-showcase-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 20px;
    text-align: center;
}
.brand-showcase-section .brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 8px 15px;
    opacity: 0.75;
    filter: grayscale(90%);
    transition: all 0.35s ease;
}
.brand-showcase-section .brand-image img {
    max-height: 38px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.35s ease;
}
.brand-showcase-section .brand-image:hover,
.brand-showcase-section .swiper-slide-active .brand-image {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* =========================================================
   COMPACT SECTION SPACING & SEAMLESS FLOW
   ========================================================= */
.section-padding {
    padding: 55px 0 !important;
}
.section-title.mb-5 {
    margin-bottom: 32px !important;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 45px 0 !important;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 35px 0 !important;
    }
    .section-title.mb-5 {
        margin-bottom: 24px !important;
    }
}

/* =========================================================
   ABOUT SECTION ENHANCEMENTS (NO BACKGROUND IMAGES)
   ========================================================= */
.about-section,
.about-section.bg-cover {
    background-image: none !important;
    background-color: #ffffff !important;
}
.about-wrapper .about-image-1,
.about-wrapper.style-2,
.about-wrapper-2 {
    background-image: none !important;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--dev-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image-wrap:hover img {
    transform: scale(1.04);
}
.about-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(56, 75, 255, 0.35);
    border-radius: 14px;
    padding: 16px 20px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.about-floating-badge .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--dev-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.about-floating-badge h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}
.about-floating-badge span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.about-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-check-item .check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(56, 75, 255, 0.12);
    color: var(--dev-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
}
.about-check-item strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    display: block;
}
.about-check-item p {
    color: #64748b;
    font-size: 13.5px;
    margin: 2px 0 0 0;
    line-height: 1.5;
}

/* =========================================================
   SERVICES SECTION ENHANCEMENTS
   ========================================================= */
.service-card-modern {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #384bff, #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(56, 75, 255, 0.12);
    border-color: rgba(56, 75, 255, 0.35);
}
.service-card-modern:hover::before {
    opacity: 1;
}
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56, 75, 255, 0.1) 0%, rgba(0, 210, 255, 0.12) 100%);
    border: 1px solid rgba(56, 75, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dev-primary);
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card-modern:hover .service-icon-box {
    background: var(--dev-primary);
    color: #ffffff;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(56, 75, 255, 0.35);
}
.service-card-modern h4 a {
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}
.service-card-modern:hover h4 a {
    color: var(--dev-primary);
}
.service-card-modern p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0 18px 0;
}
.service-btn-link {
    color: var(--dev-primary);
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}
.service-btn-link:hover {
    color: var(--dev-primary-dark);
    gap: 10px;
}

/* =========================================================
   MID-PAGE HIGH-IMPACT CTA SECTION
   ========================================================= */
.mid-cta-banner {
    background: linear-gradient(135deg, #0b132b 0%, #111d42 50%, #080e21 100%);
    border: 1px solid rgba(56, 75, 255, 0.35);
    border-radius: var(--dev-radius);
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 75, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.mid-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #384bff, #00d2ff, #a855f7);
}

/* =========================================================
   DEVELOPMENT PROCESS (HOW IT WORKS)
   ========================================================= */
.process-step-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 34px 26px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    text-align: center;
}
.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(56, 75, 255, 0.1);
    border-color: rgba(56, 75, 255, 0.35);
}
.process-step-num {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #384bff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.process-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--dev-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

/* =========================================================
   METRICS & IMPACT SECTION
   ========================================================= */
.metrics-card-modern {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.metrics-card-modern:hover {
    background: rgba(56, 75, 255, 0.12);
    border-color: rgba(56, 75, 255, 0.35);
    transform: translateY(-5px);
}
.metrics-num {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
}
.metrics-label {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* =========================================================
   PORTFOLIO SHOWCASE CARDS
   ========================================================= */
.project-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.project-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.project-card-v2 .project-thumb-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.project-card-v2 .project-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card-v2:hover .project-thumb-wrap img {
    transform: scale(1.08);
}
.project-badge-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-card-v2 .project-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-card-v2 h4 a {
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
}
.project-card-v2:hover h4 a {
    color: var(--dev-primary);
}

/* =========================================================
   TECH STACK ARSENAL GRID
   ========================================================= */
.tech-stack-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}
.tech-stack-box:hover {
    transform: translateY(-4px);
    border-color: var(--dev-primary);
    box-shadow: 0 10px 25px rgba(56, 75, 255, 0.1);
}
.tech-stack-box .tech-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(56, 75, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dev-primary);
    font-size: 20px;
    flex-shrink: 0;
}
.tech-stack-box h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.tech-stack-box small {
    color: #64748b;
    font-size: 12px;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.home-faq-accordion .accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
}
.home-faq-accordion .accordion-item:hover {
    border-color: rgba(56, 75, 255, 0.35);
}
.home-faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    padding: 18px 24px;
    background: #ffffff;
    box-shadow: none;
}
.home-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--dev-primary);
    background: rgba(56, 75, 255, 0.04);
}
.home-faq-accordion .accordion-body {
    padding: 18px 24px;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.7;
    background: #ffffff;
}

/* =========================================================
   MODERN FOOTER UI ENHANCEMENTS ("MAKE FOOTER GOOD UI")
   ========================================================= */
.footer-section-modern {
    background: #060a17;
    color: #94a3b8;
    position: relative;
    border-top: 1px solid rgba(56, 75, 255, 0.2);
}

.footer-pre-cta-wrapper {
    background: linear-gradient(135deg, #0b132b 0%, #152248 50%, #080e21 100%);
    border: 1px solid rgba(56, 75, 255, 0.35);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 75, 255, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: -65px;
    z-index: 10;
}

.footer-pre-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #384bff, #00d2ff, #a855f7);
}

.footer-main-area {
    padding: 75px 0 45px 0;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #384bff, #00d2ff);
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list li a {
    color: #94a3b8;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-nav-list li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-nav-list li a i {
    color: var(--dev-primary);
    font-size: 11px;
    transition: transform 0.2s ease;
}

.footer-nav-list li a:hover i {
    color: #00d2ff;
    transform: translateX(2px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: #94a3b8;
}

.footer-contact-item .contact-icon-pill {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(56, 75, 255, 0.12);
    border: 1px solid rgba(56, 75, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d2ff;
    flex-shrink: 0;
    font-size: 13px;
}

.footer-contact-item a {
    color: #cbd5e1;
}

.footer-contact-item a:hover {
    color: #00d2ff;
}

.footer-social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 14px;
    margin-right: 8px;
    transition: all 0.25s ease;
}

.footer-social-circle:hover {
    background: var(--dev-primary);
    border-color: var(--dev-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(56, 75, 255, 0.4);
}

/* Footer Quick Callback Box */
.footer-callback-box {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px;
    margin-top: 15px;
}

.footer-callback-box .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.footer-callback-box .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--dev-primary);
    box-shadow: 0 0 0 3px rgba(56, 75, 255, 0.25);
    color: #ffffff;
}

.footer-callback-box .btn-callback {
    background: linear-gradient(135deg, #384bff 0%, #1d2ebd 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
    border-radius: 8px;
    padding: 10px 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(56, 75, 255, 0.35);
}

.footer-callback-box .btn-callback:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 75, 255, 0.5);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 13px;
    color: #64748b;
    background: #040710;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.back-to-top-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.back-to-top-btn:hover {
    background: var(--dev-primary);
    border-color: var(--dev-primary);
    transform: translateY(-3px);
}

/* =========================================================
   GENERAL BUTTONS & COMPONENT ENHANCEMENTS
   ========================================================= */
.theme-btn {
    background: var(--dev-primary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 30px;
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(56, 75, 255, 0.25);
    transition: all 0.3s ease;
}
.theme-btn:hover {
    background: var(--dev-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 75, 255, 0.35);
}
.theme-btn.bg-white {
    background: #ffffff !important;
    color: #0f172a !important;
}
.theme-btn.bg-white:hover {
    background: var(--dev-primary) !important;
    color: #ffffff !important;
}

/* Testimonials */
.testimonial-slider-2 .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-box-items {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-box-items:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}
.testimonial-box-items .client-items {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.testimonial-box-items .client-image {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    margin-right: 14px;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--dev-primary);
}
.testimonial-box-items .client-content h4 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #0f172a;
}
.testimonial-box-items .client-content p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 4px;
}
.testimonial-box-items .star {
    color: #f59e0b;
    font-size: 12px;
}
.testimonial-slider-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #64748b;
    opacity: 0.45;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.testimonial-slider-dots .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--dev-primary);
    opacity: 1;
    border-radius: 4px;
}

/* Marquee Section */
.marquee-wrapper {
    background: #080e21;
    padding: 16px 0;
    overflow: hidden;
}
.marquee-item .text-style {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News / Blog Cards - Equalized & Fixed Heights */
.news-card-modern {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(56, 75, 255, 0.3);
}
.news-card-modern .news-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #0b132b;
    flex-shrink: 0;
}
.news-card-modern .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card-modern:hover .news-thumb img {
    transform: scale(1.06);
}
.news-card-modern .news-card-body {
    padding: 22px 22px 14px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-card-modern .news-meta {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-card-modern .news-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-modern .news-card-title a {
    color: #0f172a;
    transition: color 0.2s ease;
}
.news-card-modern .news-card-title a:hover {
    color: var(--dev-primary);
}
.news-card-modern .news-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
    min-height: 62px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-modern .news-card-footer {
    padding: 14px 22px 20px 22px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

/* Breadcrumb Styling - Compact Height & Deep Tech Gradient Background */
.breadcrumb-wrapper {
    padding: 46px 0 !important;
    position: relative;
    background: linear-gradient(135deg, #070d1e 0%, #0d1b3e 50%, #081026 100%) !important;
    background-image: linear-gradient(135deg, #070d1e 0%, #0d1b3e 50%, #081026 100%) !important;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(56, 75, 255, 0.26) 0%, transparent 68%),
                linear-gradient(180deg, rgba(7, 13, 30, 0.1) 0%, rgba(7, 13, 30, 0.95) 100%) !important;
    pointer-events: none;
}
.breadcrumb-wrapper .border-shape,
.breadcrumb-wrapper .line-shape {
    display: none !important;
}
.breadcrumb-wrapper .container {
    position: relative;
    z-index: 5;
}
.breadcrumb-wrapper .page-heading {
    padding: 0 !important;
    text-align: center;
    position: relative;
    z-index: 5;
}
.breadcrumb-wrapper .page-heading h1,
.breadcrumb-wrapper h1 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.3px;
}
.breadcrumb-wrapper .breadcrumb-items,
.breadcrumb-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #94a3b8;
    font-size: 13.5px;
}
.breadcrumb-wrapper .breadcrumb-items li,
.breadcrumb-wrapper ul li {
    display: inline-flex;
    align-items: center;
}
.breadcrumb-wrapper .breadcrumb-items li a,
.breadcrumb-wrapper ul li a {
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.2s ease;
}
.breadcrumb-wrapper .breadcrumb-items li a:hover,
.breadcrumb-wrapper ul li a:hover {
    color: var(--dev-accent, #00d2ff);
}
.breadcrumb-wrapper .breadcrumb-items li i,
.breadcrumb-wrapper ul li i {
    font-size: 10px;
    margin: 0 8px;
    color: var(--dev-accent, #00d2ff);
}
@media (max-width: 767px) {
    .breadcrumb-wrapper {
        padding: 34px 0 !important;
    }
    .breadcrumb-wrapper .page-heading h1,
    .breadcrumb-wrapper h1 {
        font-size: 24px !important;
    }
}

/* Quick Estimate Modal Popup Styling - Compact & Fits in Screen */
#quickEstimateModal .modal-dialog {
    max-width: 560px;
    margin: 1.25rem auto;
}
@media (max-width: 575px) {
    #quickEstimateModal .modal-dialog {
        max-width: calc(100% - 1rem);
        margin: 0.5rem auto;
    }
}
#quickEstimateModal .estimate-modal-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.28);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.95);
    overflow: hidden;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}
#quickEstimateModal .estimate-modal-header {
    padding: 16px 20px 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #ffffff;
    flex-shrink: 0;
}
#quickEstimateModal .estimate-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    z-index: 1055;
    transition: all 0.25s ease;
}
#quickEstimateModal .estimate-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}
#quickEstimateModal .estimate-modal-icon-small {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(56, 75, 255, 0.12) 0%, rgba(0, 210, 255, 0.18) 100%);
    color: var(--dev-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(56, 75, 255, 0.15);
}
#quickEstimateModal .badge-estimate-pill {
    background: rgba(56, 75, 255, 0.09);
    color: var(--dev-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}
#quickEstimateModal .estimate-modal-body {
    padding: 16px 20px 20px 20px !important;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}
#quickEstimateModal .estimate-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 3px;
}
#quickEstimateModal .form-control,
#quickEstimateModal .form-select {
    border-radius: 7px;
    border: 1px solid #cbd5e1;
    font-size: 13.5px;
    padding: 7px 12px;
    height: 38px;
    color: #1e293b;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#quickEstimateModal textarea.form-control {
    height: auto;
    min-height: 52px;
    padding: 8px 12px;
    line-height: 1.45;
    resize: vertical;
}
#quickEstimateModal .form-control:focus,
#quickEstimateModal .form-select:focus {
    border-color: var(--dev-primary);
    box-shadow: 0 0 0 3px rgba(56, 75, 255, 0.15);
}
#quickEstimateModal .input-group-text {
    border-radius: 7px 0 0 7px;
    border-color: #cbd5e1;
    background-color: #f8fafc;
    color: #64748b;
    font-size: 13px;
    padding: 0 10px;
    height: 38px;
}
#quickEstimateModal .input-group .form-control {
    border-radius: 0 7px 7px 0;
}
#quickEstimateModal .modal-submit-btn {
    background: linear-gradient(135deg, #384bff 0%, #00d2ff 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    height: 42px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(56, 75, 255, 0.3);
}
#quickEstimateModal .modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(56, 75, 255, 0.45);
    color: #ffffff;
}
#quickEstimateModal .estimate-trust-bar {
    font-size: 11.5px;
    color: #64748b;
}
#quickEstimateModal .estimate-trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
#quickEstimateModal .nice-select {
    width: 100%;
    float: none;
    border-radius: 7px;
    border: 1px solid #cbd5e1;
    font-size: 13px;
    height: 38px;
    line-height: 36px;
    padding-left: 12px;
    padding-right: 26px;
    margin-bottom: 0;
}
#quickEstimateModal .nice-select .list {
    width: 100%;
    max-height: 190px;
    overflow-y: auto;
    z-index: 9999;
}
#quickEstimateModal .nice-select:focus,
#quickEstimateModal .nice-select.open {
    border-color: var(--dev-primary);
    box-shadow: 0 0 0 3px rgba(56, 75, 255, 0.15);
}

/* =========================================================
   FEATURED CLIENT PROJECTS & PLATFORMS SHOWCASE (NEW UI)
   ========================================================= */
.project-showcase-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-showcase-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(56, 75, 255, 0.3);
}
.mockup-browser-bar {
    background: #f8fafc;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}
.mockup-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}
.mockup-controls span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}
.mockup-controls .dot-red { background: #ef4444; }
.mockup-controls .dot-yellow { background: #f59e0b; }
.mockup-controls .dot-green { background: #10b981; }

.mockup-address-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 11px;
    color: #64748b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.project-preview-thumb {
    height: 215px;
    position: relative;
    overflow: hidden;
    background: #0b132b;
}
.project-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-showcase-card:hover .project-preview-thumb img {
    transform: scale(1.08);
}
.project-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 19, 43, 0.88);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.35);
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-live-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(16, 185, 129, 0.92);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.live-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    animation: pulseLiveDot 1.5s infinite;
}
@keyframes pulseLiveDot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}
.project-card-body-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.project-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 10px;
    min-height: 48px;
}
.project-card-title a {
    color: #0f172a;
    transition: color 0.2s ease;
}
.project-showcase-card:hover .project-card-title a {
    color: var(--dev-primary);
}
.project-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.project-tag {
    font-size: 11px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.2px;
}
.project-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.live-url-link {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}
.live-url-link:hover {
    color: var(--dev-primary);
}
.case-study-action {
    font-size: 12px;
    font-weight: 700;
    color: var(--dev-primary);
    background: rgba(56, 75, 255, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s ease;
}
.case-study-action:hover {
    background: var(--dev-primary);
    color: #ffffff;
    transform: translateX(3px);
}
.proj-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
    font-size: 14px;
}
.proj-nav-btn:hover {
    background: var(--dev-primary);
    color: #ffffff;
    border-color: var(--dev-primary);
    box-shadow: 0 4px 14px rgba(56, 75, 255, 0.3);
}
.project-slider-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #94a3b8;
    opacity: 0.45;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}
.project-slider-dots .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--dev-primary);
    opacity: 1;
    border-radius: 4px;
}



