@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
            --primary: #6d4bff;
            --primary-dark: #5637e8;
            --primary-soft: #f1edff;
            --secondary: #0f172a;
            --accent: #a78bfa;
            --light: #f8f9ff;
            --surface: #ffffff;
            --surface-alt: #eef2ff;
            --text: #0d1321;
            --muted: #64748b;
            --dark-accent: #0d1321;
            --primary-gradient: linear-gradient(135deg, #6d4bff 0%, #8b5cf6 100%);
            --glass-bg: linear-gradient(180deg, #f8fbff 0%, #eef2ff 100%);
            --transition: all 0.3s ease;
            --font-size-16:20px;
        }

        body {
            font-family: "Rajdhani", sans-serif;
            overflow-x: hidden;
            background-color: var(--light);
        }

        /* Top Header */
        .top-header {
            background-color: var(--secondary);
            color: white;
            padding: 5px 0;
            font-size: 12px;
        }
        .top-header a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size:var(--font-size-16);
        }
        .top-header a:hover {
            color: var(--accent);
        }
        .top-header-contact-list {
            display: flex;
            align-items: center;
            gap: 26px;
            flex-wrap: wrap;
        }
        .top-header-contact-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.92);
        }
        .top-header-contact-item i {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 4px 10px rgba(0,0,0,0.18);
        }
        .top-header-follow {
            display: inline-flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            width: 100%;
        }
        .top-header-follow-label {
            font-size:var(--font-size-16);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: capitalize;
            color: rgba(255, 255, 255, 0.78);
        }
        .social-icons {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .social-icons a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #fff;
            background: linear-gradient(145deg, #344154, #141d2f);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transform: translateY(0);
        }
        .social-icons a:hover {
            color: #fff;
            background: linear-gradient(145deg, #7c4dff, #4f46e5);
            transform: translateY(-2px);
        }

        @media (max-width: 767.98px) {
            .top-header {
                padding: 8px 0;
            }
            .top-header .row > div {
                text-align: center !important;
                justify-content: center !important;
            }
            .top-header-contact-list {
                display: none;
            }
            .top-header-follow {
                justify-content: center;
                gap: 10px;
                width: auto;
            }
            .top-header-contact-item {
                justify-content: center;
            }
            .top-header .col-md-5 {
                margin-top: 0 !important;
            }
        }

        /* Main Navbar */
        .navbar {
            padding: 15px 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 26px;
            color: var(--secondary) !important;
        }

.navbar-brand img {
    height: 50px;
}

        .navbar-brand span {
            color: var(--primary);
        }

.nav-link {
    font-weight: 700;
    color: var(--secondary) !important;
    margin: 0px 0px;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
}

        .btn-contact {
            background: var(--primary);
            color: white !important;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            transition: var(--transition);
        }
        .contact-widget {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: var(--transition);
        }
        .contact-widget:hover {
            transform: translateY(-2px);
        }
        .contact-icon-box {
            width: 45px;
            height: 45px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
        }
        .contact-info-text {
            display: flex;
            flex-direction: column;
        }
        .contact-info-text .label {
            font-size: 14px;
            color:#7350f2;
            margin: 0;
            line-height: 1.2;
        }
        .contact-info-text .number {
            font-size: 17px;
            font-weight: 700;
            color: var(--secondary);
            margin: 0;
            line-height: 1.2;
        }

        /* Mobile Sidebar Menu */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: -100% !important;
                height: 100vh;
                width: 280px;
                background: white;
                z-index: 1060;
                padding: 30px;
                transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                display: block !important;
                box-shadow: 10px 0 30px rgba(0,0,0,0.2);
                visibility: visible !important;
                opacity: 1 !important;
            }
            .navbar-collapse.show {
                left: 0 !important;
            }
            .navbar-nav {
                margin-top: 40px;
                opacity: 1;
            }
            .nav-item {
                margin: 0;
                border-bottom: 1px solid #f1f5f9;
            }
            .nav-link {
                padding: 15px 0 !important;
                font-size: 16px;
            }
            .sidebar-social {
                position: absolute;
                bottom: 30px;
                left: 30px;
                right: 30px;
                border-top: 1px solid #f1f5f9;
                padding-top: 25px;
            }
            .sidebar-social .sidebar-social-links {
                display: flex;
                gap: 12px;
            }
            .sidebar-social .sidebar-social-links a {
                width: 42px;
                height: 42px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                color: #fff !important;
                background: linear-gradient(145deg, #8a68ff, #5f3df2);
                box-shadow: 0 10px 18px rgba(109, 75, 255, 0.25), inset 0 1px 2px rgba(255,255,255,0.18);
                border: 1px solid rgba(255,255,255,0.18);
                transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            }
            .sidebar-social .sidebar-social-links a:hover {
                transform: translateY(-2px);
                background: linear-gradient(145deg, #0f172a, #1e293b);
                box-shadow: 0 12px 22px rgba(15, 23, 42, 0.24), inset 0 1px 1px rgba(255,255,255,0.08);
            }
        }

        .hero {
            padding: 80px;
            background: #020617;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            position: relative;
            z-index: 10;
            animation: float-hero 6s ease-in-out infinite;
        }

        @keyframes float-hero {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(109, 75, 255, 0.18) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.12) 0%, transparent 42%);
            z-index: 1;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90(deg), rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            mask-image: radial-gradient(ellipse at center, black, transparent 80%);
        }

        .hero-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(225deg, rgba(109, 75, 255, 0.28) 0%, transparent 72%);
            z-index: 2;
            filter: blur(100px);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            color: var(--accent);
            font-weight: 500;
            font-size: 13px;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .hero-gradient-text {
            background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-main-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: var(--font-size-16);
            line-height: 1.8;
            color: #cbd5e1;
            max-width: 540px;
        }

        /* Perspective Window */
        .window-container {
            perspective: 1000px;
            position: relative;
        }

        .code-window {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 20px 50px rgba(0, 0, 0, 0.5);
            transform: rotateY(-15deg) rotateX(5deg);
            transition: var(--transition);
        }

        .window-container:hover .code-window {
            transform: rotateY(-5deg) rotateX(2deg);
        }

        .window-header {
            background: rgba(255, 255, 255, 0.03);
            padding: 15px 25px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; }
        .red { background: #ff5f57; box-shadow: 0 0 10px rgba(255, 95, 87, 0.4); }
        .yellow { background: #febc2e; box-shadow: 0 0 10px rgba(254, 188, 46, 0.4); }
        .green { background: #28c840; box-shadow: 0 0 10px rgba(40, 200, 64, 0.4); }

        .window-content {
            padding: 40px;
            font-family: 'Fira Code', 'Courier New', monospace;
            font-size: 15px;
            line-height: 1.6;
        }

        .code-line { display: flex; gap: 20px; margin-bottom: 10px; }
        .line-number { color: #334155; user-select: none; width: 20px; }
        .keyword { color: #f472b6; }
        .function { color: #38bdf8; }
        .string { color: #4ade80; }
        .comment { color: #64748b; }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 16px;
            z-index: 20;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: float-ui 5s ease-in-out infinite;
        }

        .card-1 { top: -40px; right: -20px; animation-delay: 0s; }
        .card-2 { bottom: 40px; left: -40px; animation-delay: 2s; }

        @keyframes float-ui {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .hero-btns .btn {
            border-radius: 0px;
            padding: 16px 35px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: var(--primary);
        }

        @media (max-width: 991.98px) {
            .hero { padding: 140px 0 100px; text-align: center; }
            .hero h1 { font-size: 2rem; }
            .hero p { margin: 0 auto 40px; }
            .hero-btns { justify-content: center; }
            .window-container { margin-top: 80px; }
            .code-window { transform: none !important; }
            .floating-card { display: none; }
        }

        /* Features Section - Added for proper layout */
        .features {
            padding: 60px 0;
            background: var(--surface);
        }
        .section-header {
            max-width: 700px;
            margin: 0 auto 80px;
        }
        .section-tag {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            display: block;
            margin-bottom: 15px;
        }
        .section-title {
            font-weight: 800;
            font-size: 3rem;
            color: var(--secondary);
            letter-spacing: -1px;
        }

        /* Services Grid */

        .service-card {
            padding: 20px;
            border-radius: 10px;
            background: var(--surface);
            border: 1px solid #e7eaf5;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        .service-card p {
            font-size: var(--font-size-16);
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 40px 80px rgba(0, 48, 150, 0.08);
            border-color: var(--primary);
        }
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, transparent 50%, rgba(109, 75, 255, 0.05) 50%);
            border-radius: 0 0 20px 0;
            z-index: -1;
        }
        .service-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 40px;
            font-weight: 900;
            color: rgba(109, 75, 255, 0.08);
            line-height: 1;
            transition: 0.4s ease;
        }
        .service-card:hover .service-number {
            color: rgba(109, 75, 255, 0.16);
            transform: scale(1.2);
        }
        .service-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(109, 75, 255, 0.08);
            color: var(--primary);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .service-card:hover .service-icon {
            background: var(--primary);
            transform: rotateY(180deg);
            transition: 0.6s;
        }
        .service-card h4 {
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .projects-showcase {
            padding: 60px 0;
            background:
                radial-gradient(circle at top left, rgba(109, 75, 255, 0.09), transparent 28%),
                linear-gradient(180deg, #f8faff 0%, #eef2ff 100%);
        }
        .projects-showcase .section-header {
            margin-bottom: 40px;
        }
        .project-card {
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(109, 75, 255, 0.12);
            border-radius: 0;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        .project-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 28px 60px rgba(109, 75, 255, 0.16);
            border-color: rgba(109, 75, 255, 0.28);
        }
        .project-image-wrap {
            position: relative;
            overflow: hidden;
            background: #dbe4ff;
        }
        .project-image {
            width: 100%;
            height: 190px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .project-card:hover .project-image {
            transform: scale(1.08);
        }
        .project-content {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 20px;
        }
        .project-title {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .project-description {
            color: var(--muted);
            font-size: var(--font-size-16);
            line-height: 1.6;
            margin-bottom: 14px;
        }
        .project-meta-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .project-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
.tech-pill {
    padding: 5px 5px;
    border-radius: 0px;
    background: #edf2ff;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(109, 75, 255, 0.12);
}
        .project-actions {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(148, 163, 184, 0.2);
            margin-top: auto;
        }
        .project-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 11px 18px;
            border-radius: 0;
            background: linear-gradient(135deg, #0f172a 0%, #6d4bff 55%, #8b5cf6 100%);
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.2px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 14px 28px rgba(109, 75, 255, 0.22);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }
        .project-link::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
            opacity: 0.9;
        }
        .project-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 70%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transform: skewX(-22deg);
            transition: left 0.45s ease;
        }
        .project-link span,
        .project-link i {
            position: relative;
            z-index: 1;
        }
        .project-link i {
            transition: transform 0.3s ease;
        }
        .project-link:hover {
            color: #fff;
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 20px 36px rgba(109, 75, 255, 0.32);
            background: linear-gradient(135deg, #111c34 0%, #5b37f4 52%, #9b6bff 100%);
        }
        .project-link:hover::after {
            left: 135%;
        }
        .project-link:hover i {
            transform: translateX(4px) translateY(-1px);
        }
        @media (max-width: 767.98px) {
            .project-image {
                height: 170px;
            }
            .project-content {
                padding: 18px;
            }
            .project-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            .project-link {
                width: 100%;
                justify-content: center;
            }
        }

        /* Recent Works - Dark & Minimal */
        .recent-works {
            padding: 120px 0;
            background: #0f172a;
            color: white;
        }
        .recent-works .section-title {
            color: white;
        }
        .work-item {
            position: relative;
            background: #1e293b;
            border-radius: 24px;
            padding: 20px;
            transition: 0.4s ease;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .work-item:hover {
            background: var(--primary);
            transform: translateY(-10px);
        }
        .work-img-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .work-img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            transition: 0.5s ease;
        }
        .work-item:hover .work-img {
            transform: scale(1.1) rotate(2deg);
            opacity: 0.7;
        }
        .work-content {
            padding: 10px 5px;
        }
        .work-cat {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
        }
        .work-item:hover .work-cat {
            color: rgba(255,255,255,0.8);
        }
        .work-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 0;
        }
        /* Navigation dot for portfolio */
        .work-arrow {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateX(-20px);
            transition: 0.4s ease;
        }
        .work-item:hover .work-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .section-title { font-size: 2.2rem; }
        }

        /* Footer */
        .footer {
            background: #080e1f;
            color: #8896b0;
            padding: 80px 0 0;
            position: relative;
        }
        .footer-top-bar {
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), #f97316, var(--primary));
            background-size: 200% 100%;
            animation: shimmer-bar 4s linear infinite;
        }
        @keyframes shimmer-bar {
            0% { background-position: 0% 0; }
            100% { background-position: 200% 0; }
        }

        /* Brand */
        .footer-brand img {
    width: 100%;
    height: 60px;
}

        .footer-brand {
            display: inline-block;
            font-size: 1.7rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
        }
        .footer-brand span { color: var(--primary); }

        .footer-about {
            font-size:var(--font-size-16);
            line-height: 1.8;
            color: #8896b0;
            margin-bottom: 22px;
        }

        /* Socials */
        .footer-socials { display: flex; gap: 10px; }
        .footer-socials a {
            width: 38px; height: 38px;
            border-radius: 0px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.04);
            color: #8896b0;
            display: flex; align-items: center; justify-content: center;
            font-size:var(--font-size-16);
            text-decoration: none;
            transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
        }
        .footer-socials a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Title */
        .footer-title {
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        /* Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: #8896b0;
            text-decoration: none;
            font-size:var(--font-size-16);
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.2s, gap 0.2s;
        }
        .footer-links a i { font-size: 0.65rem; color: var(--primary); transition: transform 0.2s; }
        .footer-links a:hover { color: #fff; gap: 10px; }
        .footer-links a:hover i { transform: translateX(2px); }

        /* Contact */
        .footer-contact { display: flex; flex-direction: column; gap: 14px; }
        .footer-contact-item {
            display: flex;
/*            align-items: flex-start;*/
            align-items:center;
            gap: 12px;
        }
        .footer-contact-icon {
            width: 34px; height: 34px;
            border-radius: 0px;
            background: rgba(109,75,255,0.15);
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .footer-contact-item span,
        .footer-contact-item a {
            font-size:var(--font-size-16);
            color: #8896b0;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.2s;
        }
        .footer-contact-item a:hover { color: #fff; }

        /* Newsletter */
        .footer-newsletter-text {
            font-size: 0.87rem;
            line-height: 1.75;
            color: #8896b0;
            margin-bottom: 16px;
        }
        .footer-newsletter-wrap {
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            border: none;
            background: rgba(255,255,255,0.07);
        }
        .footer-newsletter-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            padding: 12px 16px;
            font-size: 0.86rem;
            color: #fff;
            font-family: 'Poppins', sans-serif;
        }
        .footer-newsletter-wrap input::placeholder { color: #60748a; }
        .footer-newsletter-wrap button {
            background: var(--primary);
            border: none;
            color: #fff;
            padding: 0 18px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .footer-newsletter-wrap button:hover { background: var(--primary-dark); }
        .footer-badge {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-top: 12px;
            font-size: 0.75rem;
            color: #60748a;
        }
        .footer-badge i { color: #22c55e; font-size: 0.8rem; }

        /* Bottom bar */
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            margin-top: 60px;
            padding: 22px 0;
            font-size: var(--font-size-16);
            color: #60748a;
        }
        .footer-bottom strong { color: #fff; }
        .footer-bottom a {
            color: #60748a;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-bottom a:hover { color: #fff; }
        .footer-bottom-dot {
            display: inline-block;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: #3d4f68;
            margin: 0 10px;
            vertical-align: middle;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            /* background: rgba(0, 0, 0,1);
            z-index: 1055; */
            transition: opacity 0.3s ease;
        }
        /*about*/
.about-luxury-section {
        padding: 60px 0;
/*        background: #fdf0f3;*/
    }

    /* Image Grid Styling */
    .image-grid-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Left side: 2 Images stacked */
    .left-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 45%;
    }

    .left-images img {
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 240px;
    border: 10px solid #fff;
}

    /* Right side: 1 Large Image */
    .right-image {
        width: 55%;
    }

    .right-image img {
        width: 100%;
        height: 500px;
        border-radius: 0px;
        object-fit: cover;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border: 8px solid #fff;
    }

    /* Floating Badge on Images */
    .trust-badge-float {
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        background: var(--primary-gradient);
        color: #fff;
        padding: 20px;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 5;
        border: 5px solid #fff;
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(109, 75, 255, 0.28);
    }

    /* Content Styling */
    .about-label {
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        font-size: 14px;
        display: block;
        margin-bottom: 15px;
    }

    .about-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

    .about-desc {
        color: var(--muted);
        font-size: var(--font-size-16);
        line-height: 1.8;
/*        margin-bottom: 35px;*/
    }

    .about-details-subtitle{
        color:#7350f2;
        font-size:20px;
        text-transform: uppercase;
    }

     .about-details-title{
        color:#000;
    }
    .about-details p{
        font-size:var(--font-size-16);
    }
    .about-card-title{
        font-size:32px;
        color:#7350f2!important;
    }
    .tracking-wider{
        color:#000;
         font-size:18px; 
         font-weight: 600;
         text-transform: uppercase;
    }
.about-details {
    background: #fff;
}
    /* Mobile View Fix */
    @media (max-width: 991px) {
        .image-grid-wrapper { margin-bottom: 50px; }
        .about-heading {
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        .right-image img { height: 400px; }
    }

    @media (max-width: 576px) {
        .image-grid-wrapper { flex-direction: column; }
        .left-images, .right-image { width: 100%; }
        .right-image img { height: 300px; }
    }


/*about*/

/*blog*/
    .blog-section {
    padding: 60px 0;
    background-color: var(--surface);
}

    /* Section Title */
    .blog-header {
        margin-bottom: 60px;
    }
    .blog-header h2 {
        color: var(--dark-accent);
        font-weight: 800;
        font-size: 2.5rem;
    }
    .blog-header .underline {
        width: 80px;
        height: 4px;
        background: var(--primary-gradient);
        margin: 15px auto;
        border-radius: 10px;
    }

    /* Blog Card Premium Styling */
    .premium-blog-card {
        background: var(--glass-bg);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 0px;
        overflow: hidden;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        position: relative;
    }

    .premium-blog-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(109, 75, 255, 0.14);
    }

    /* Image Box */
    .blog-img-wrapper {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .blog-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

    .premium-blog-card:hover .blog-img-wrapper img {
        transform: scale(1.1) rotate(2deg);
    }

    /* Category Badge */
    .category-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary-gradient);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 10;
    }

    /* Card Content */
    .blog-info {
        padding: 25px;
    }

    .blog-info .date {
        font-size: 12px;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    .blog-info h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark-accent);
        line-height: 1.5;
        margin-bottom: 15px;
        min-height: 50px;
    }

    /* Read More Button */
    .btn-read-more {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark-accent);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

    .btn-read-more i {
        color: var(--primary);
        transition: 0.3s;
    }

    .btn-read-more:hover i {
        transform: translateX(5px);
    }

    /* Floating Overlay Effect */
    .premium-blog-card::after {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        border-radius: 0px;
        border: 2px solid transparent;
        transition: 0.4s;
        pointer-events: none;
    }

    .premium-blog-card:hover::after {
        border-color: var(--primary);
        opacity: 0.3;
    }
    /*blog*/

    /* Working Process Section */
    .working-process {
        padding: 60px 0;
    }
    .process-header {
        margin-bottom: 60px;
    }
    .process-tag {
        color: #7c4dff;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }
    .process-tag::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background: #7c4dff;
    }
    .process-tag::before {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        background: #7c4dff;
        border-radius: 50%;
        z-index: 1;
    }
    .process-title {
        font-weight: 800;
        font-size: 2rem;
        color: #0c0c0c;
        margin-top: 15px;
    }
    .process-title span {
        color: #7c4dff;
    }

    .process-card {
        background: #fff;
        border: none;
        border-radius: 12px;
        padding: 40px 20px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }
    /* Inner Border Design */
    .process-card::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 1px solid #7c4dff20;
        border-radius: 10px;
        pointer-events: none;
        z-index: 0;
    }
    .process-card:hover {
        transform: translateY(-5px);
        border-color: #7c4dff40;
        box-shadow: 0 15px 30px rgba(124, 77, 255, 0.1);
    }
    .process-card:hover::before {
        border-color: #7c4dff30;
    }
   .process-icon-wrapper {
    width: 70px;
    height: 60px;
    background: #7c4dff;
    margin: 0 auto 35px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    position: relative;
}

    /* Small circle dot on icon */
    .process-icon-wrapper::after {
        content: '';
        position: absolute;
        right: -10px;
        bottom: 10px;
        width: 35px;
        height: 35px;
        background: #fff;
        border: 2px solid #7c4dff;
        border-radius: 50%;
        z-index: 2;
    }
    .process-icon-wrapper::before {
        content: '';
        position: absolute;
        right: -3px;
        bottom: 17px;
        width: 21px;
        height: 21px;
        background: #7c4dff20;
        border-radius: 50%;
        z-index: 3;
    }
   .process-card h4 {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
    color: #0c0c0c;
}

    .process-card p {
        color: #6b7280;
        line-height: 1.8;
        font-size: var(--font-size-16);
        margin-bottom: 0;
        max-width: 90%;
        margin: 0 auto;
    }
    .process-number-wrapper {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        padding: 10px;
        border-radius: 50%;
    }
    .process-number {
        width: 40px;
        height: 40px;
        background: #0c0c0c;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        margin: 0;
        position: static;
        left: unset;
        transform: unset;
    }

    /* Why Choose Us Section */
    .why-choose-us {
        padding: 60px 0px;
        background-color: #f1f5f9;
        overflow: hidden;
    }
    .wcu-tag {
        color: #7c4dff;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }
    .wcu-tag::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #7c4dff;
    }
    .wcu-tag::before {
        content: '';
        position: absolute;
        bottom: -3px;
        right: -10px;
        width: 8px;
        height: 8px;
        background: #7c4dff;
        border-radius: 50%;
    }
    .wcu-title {
        font-weight: 800;
        font-size: 2rem;
        color: #0c0c0c;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    .wcu-title span {
        color: #7c4dff;
    }
    .wcu-desc {
        color: #64748b;
        margin-bottom: 40px;
        font-size: 16px;
    }
    
    /* Progress Bars */
    .skill-item { margin-bottom: 25px; }
    .skill-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .skill-header h6 {
        font-weight: 700;
        margin: 0;
        color: #0c0c0c;
    }
    .skill-header span {
        font-weight: 700;
        color: #0c0c0c;
    }
    .progress {
        height: 8px;
        background-color: #e2e8f0;
        border-radius: 10px;
        overflow: visible;
    }
    .progress-bar {
        background-color: #7c4dff;
        border-radius: 10px;
        position: relative;
    }
    .progress-bar::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        background: #7c4dff;
        border: 3px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
    }

    /* WCU Contact info */
    .wcu-actions {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 50px;
    }
    .btn-wcu {
        background: #7c4dff;
        color: white;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .wcu-call {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }
    .call-icon {
        width: 50px;
        height: 50px;
        background: #7c4dff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    .call-text span {
        display: block;
        font-size: 13px;
        color: #64748b;
    }
    .call-text h6 {
        margin: 0;
        font-weight: 700;
        color: #0c0c0c;
    }

    /* Image Side */
    .wcu-image-container {
        position: relative;
        height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .img-main-wcu {
        width: 70%;
        height: 480px;
        border-radius: 20px;
        object-fit: cover;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .img-overlay-wcu {
        width: 60%;
        height: 420px;
        border-radius: 200px 20px 20px 20px;
        object-fit: cover;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        border: 10px solid #fff;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .floating-badge-wcu {
        position: absolute;
        top: 20px;
        left: -20px;
        background: #7c4dff;
        color: white;
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
        z-index: 3;
        min-width: 140px;
        box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
    }
    .floating-badge-wcu h3 { margin: 0; font-weight: 800; font-size: 32px; }
    .floating-badge-wcu p { margin: 0; font-size: 14px; font-weight: 500; }
    
    /* Speech Bubble Tail for Badge */
    .floating-badge-wcu::after {
        content: '';
        position: absolute;
        bottom: -15px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid #7c4dff;
    }

    .service-badge-wcu {
        position: absolute;
        bottom: 40px;
        right: -20px;
        background: linear-gradient(135deg, #7c4dff, #6200ea);
        color: white;
        padding: 18px 30px;
        border-radius: 12px;
        z-index: 4;
        font-weight: 600;
        font-size: 18px;
        box-shadow: 0 15px 35px rgba(124, 77, 255, 0.4);
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Responsive adjustments for Why Choose Us */
    @media (max-width: 991.98px) {
        .why-choose-us {
            padding: 80px 0;
        }
        .wcu-image-container {
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding-left: 0 !important;
            margin-top: 50px;
        }
        .img-main-wcu, .img-overlay-wcu {
            position: relative;
            width: 100%;
            height: auto;
            top: unset;
            bottom: unset;
            left: unset;
            right: unset;
            border-radius: 20px;
        }
        .img-overlay-wcu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .floating-badge-wcu {
            top: -40px;
            left: 20px;
        }
        .service-badge-wcu {
            position: relative;
            bottom: unset;
            right: unset;
            width: fit-content;
            margin: 0 auto;
            text-align: center;
        }
        .wcu-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        .wcu-title {
            font-size: 1.2rem;
        }
    }
    
    /* Connecting Dotted Line */
    .dotted-line-wcu {
        position: absolute;
        top: 40%;
        left: -40px;
        z-index: 1;
        opacity: 0.5;
    }

    /* Team Section */
    .team-section {
        padding: 60px 0;
        background: #fff;
    }
    .team-card {
        background: white;
        border-radius: 0px;
        overflow: visible;
        text-align: center;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
        position: relative;
        height: 100%;
    }
    .team-img-wrapper {
        position: relative;
        overflow: visible;
        height: 250px;
        border-radius: 0px 0px 0 0;
    }
    .team-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0px 0px 0 0;
    }
    .team-share-group {
        position: absolute;
        left: 50%;
        bottom: -32px;
        transform: translateX(-50%);
        z-index: 10;
        width: 64px;
    }

    /* Social Icons Container (Vertical Stack) */
    .team-social-overlay {
        position: absolute;
        left: 50%;
        bottom: 70px;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        gap: 8px;
        pointer-events: none;
    }
    .team-social-overlay a {
        width: 35px;
        height: 35px;
        background: #7c4dff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(16px) scale(0.9);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 16px 28px rgba(124, 77, 255, 0.24);
    }
    .team-share-group:hover .team-social-overlay {
        pointer-events: auto;
    }
    .team-share-group:hover .team-social-overlay a {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    .team-social-overlay a:nth-child(1) { transition-delay: 0.1s; }
    .team-social-overlay a:nth-child(2) { transition-delay: 0.2s; }
    .team-social-overlay a:nth-child(3) { transition-delay: 0.3s; }
    .team-social-overlay a:nth-child(4) { transition-delay: 0.4s; }
    .team-social-overlay a:hover {
        background: #0c0c0c;
        color: white;
    }

    /* Dark Overlay only on share hover */
    .team-img-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.55);
        opacity: 0;
        transition: 0.4s;
        border-radius: 8px 8px 0 0;
    }
    .team-img-wrapper:has(.team-share-group:hover)::after {
        opacity: 1;
    }

    /* Share Button Positioned at the bottom of image */
    .share-btn-main {
        width: 50px;
        height: 50px;
        background: #7c4dff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6px solid white;
        cursor: pointer;
        font-size: 20px;
        transition: 0.3s ease;
        box-shadow: 0 12px 26px rgba(124, 77, 255, 0.25);
        margin: 0 auto;
        position: relative;
    }
    .team-share-group:hover .share-btn-main {
        background: #7c4dff;
        transform: scale(1.05);
    }

    .team-info {
        padding: 56px 20px 30px;
        background: linear-gradient(180deg, #f8fbff 0%, #edf2ff 100%);
        position: relative;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
    }
    .team-info::before {
        content: "";
        position: absolute;
        inset: 0;
        left: 0;
        background-image: repeating-radial-gradient(circle at 0% 100%, rgba(124, 77, 255, 0.08) 0 2px, transparent 2px 14px, rgba(124, 77, 255, 0.08) 14px 16px, transparent 16px 28px);
        background-size: 180px 180px;
        background-position: -6px 18px;
        background-repeat: no-repeat;
        opacity: 1;
    }

    .team-info h4 {
        font-weight: 800;
        font-size: 22px;
        margin-bottom: 6px;
        color: #0c0c0c;
        position: relative;
        z-index: 1;
        line-height: 1.15;
    }
    .team-info p {
        color: #64748b;
        font-size: 14px;
        margin: 0;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }

    .stats-banner {
        position: relative;
        padding:60px 0px;
        background-image: linear-gradient(rgba(5, 12, 28, 0.88), rgba(5, 12, 28, 0.88)), url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg?auto=compress&cs=tinysrgb&w=1600');
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }
    .stats-banner::before,
    .stats-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }
    .stats-banner::before {
        background:
            radial-gradient(circle at 20% 55%, rgba(255,255,255,0.10) 0 1.5px, transparent 1.5px) 0 0 / 13px 13px,
            radial-gradient(circle at 75% 35%, rgba(255,255,255,0.08) 0 1.5px, transparent 1.5px) 0 0 / 14px 14px;
        mask-image: radial-gradient(circle at 20% 55%, black 0, transparent 32%), radial-gradient(circle at 78% 38%, black 0, transparent 36%);
        opacity: 0.4;
    }
    .stats-banner::after {
        background:
            radial-gradient(120% 60% at 20% 45%, transparent 56%, rgba(255,255,255,0.10) 56.5%, transparent 57.5%),
            radial-gradient(110% 58% at 60% 38%, transparent 57%, rgba(255,255,255,0.08) 57.5%, transparent 58.5%),
            radial-gradient(95% 54% at 92% 52%, transparent 60%, rgba(255,255,255,0.08) 60.5%, transparent 61.5%);
        opacity: 0.22;
    }
    .stats-item {
        text-align: center;
        color: white;
        position: relative;
        z-index: 1;
    }
    .stats-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #7350f2;
	color: white;
	font-size: 30px;
	border-radius: 36% 64% 56% 44% / 39% 35% 65% 61%;
	box-shadow: 0 16px 36px rgba(115, 80, 242, 0.22);
}
    .stats-number {
        font-size: 2rem;
        line-height: 1;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px;
        letter-spacing: -2px;
    }
    .stats-label {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.88);
        margin: 0;
    }
    @media (max-width: 991.98px) {
        .stats-banner {
            padding: 70px 0;
        }
        .stats-item {
            margin-bottom: 24px;
        }
        .stats-number {
            font-size: 3rem;
        }
    }

    .testimonials-showcase {
        padding: 0 0 90px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }
    .testimonials-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 20%, rgba(124, 77, 255, 0.05) 0 2px, transparent 2px) 0 0 / 16px 16px,
            radial-gradient(circle at 90% 25%, rgba(124, 77, 255, 0.04) 0 2px, transparent 2px) 0 0 / 18px 18px;
        opacity: 0.2;
        pointer-events: none;
    }
    .testimonials-inner {
        position: relative;
        z-index: 1;
        padding-top: 16px;
    }
    .testimonial-card {
        position: relative;
        background: linear-gradient(180deg, #f5f7ff 0%, #eef2ff 100%);
        border-radius: 8px;
        padding: 34px 34px 34px 46px;
        min-height: 360px;
        box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
        overflow: hidden;
    }
    .testimonial-card::before {
        content: '';
        position: absolute;
        right: -20px;
        bottom: -28px;
        width: 220px;
        height: 180px;
        background: linear-gradient(135deg, rgba(124, 77, 255, 0.03), rgba(124, 77, 255, 0.08));
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    }
    .testimonial-stars {
        display: flex;
        gap: 12px;
        color: #7350f2;
        font-size: 14px;
        margin-bottom:20px;
        position: relative;
        z-index: 1;
    }
    .testimonial-text {
        font-size: var(--font-size-16);
        line-height: 1.72;
        color: #5a6474;
        max-width: 95%;
        margin-bottom: 52px;
        position: relative;
        z-index: 1;
    }
    .testimonial-footer {
        display: flex;
        align-items: center;
        gap: 20px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 28px;
        padding: 0 34px 0 0;
        z-index: 1;
    }
   .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #7350f2;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: 10px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(115, 80, 242, 0.12);
}
    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .testimonial-meta h4 {
        margin: 0 0 4px;
        font-size: 1.05rem;
        font-weight: 800;
        color: #0d1321;
    }
    .testimonial-meta p {
        margin: 0;
        color: #5f6b7d;
        font-size: 0.95rem;
    }
    .testimonial-quote {
        margin-left: auto;
        font-size: 4.6rem;
        line-height: 1;
        color: rgba(124, 77, 255, 0.20);
        font-family: Georgia, serif;
        padding-top: 20px;
    }
    .testimonial-mobile-carousel .carousel-item {
        padding: 0 10px;
    }
    .testimonial-desktop-carousel .carousel-item {
        padding: 0 8px;
    }
    .testimonial-mobile-carousel .testimonial-card {
        min-height: 420px;
    }
    .testimonial-desktop-carousel .testimonial-card {
        min-height: 360px;
    }
    .testimonial-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border: 0;
        border-radius: 50%;
        background: #7350f2;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        box-shadow: 0 16px 30px rgba(115, 80, 242, 0.24);
        transition: 0.3s ease;
        opacity: 1;
    }
    .testimonial-arrow:hover {
        background: #0f172a;
        color: white;
    }
    .testimonial-arrow.carousel-control-prev {
        left: -16px;
    }
    .testimonial-arrow.carousel-control-next {
        right: -16px;
    }
    .testimonial-arrow .carousel-control-prev-icon,
    .testimonial-arrow .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 100% 100%;
    }
    .testimonial-mobile-carousel .testimonial-arrow {
        top: auto;
        bottom: -58px;
        transform: none;
        width: 46px;
        height: 46px;
    }
    .testimonial-mobile-carousel .carousel-control-prev.testimonial-arrow {
        left: calc(50% - 58px);
    }
    .testimonial-mobile-carousel .carousel-control-next.testimonial-arrow {
        right: calc(50% - 58px);
    }
    @media (max-width: 575px) {
        .testimonials-showcase {
            padding: 0 0 72px;
            background: #ffffff;
        }
        .testimonial-card {
            min-height: 410px;
            padding: 28px 24px 30px 34px;
        }
        .testimonial-stars {
            font-size: 1.6rem;
            gap: 10px;
            margin-bottom: 22px;
        }
        .testimonial-text {
            font-size: 0.98rem;
            margin-bottom: 42px;
            max-width: 100%;
        }
        .testimonial-footer {
            bottom: 22px;
            padding-right: 24px;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            margin-left:8px;
        }
        .testimonial-arrow.carousel-control-prev {
            left: 8px;
        }
        .testimonial-arrow.carousel-control-next {
            right: 8px;
        }

        .testimonial-meta h4 {
        font-size:14px;
    }
    .testimonial-meta p {
        font-size:12px;
    }
    }

    .contact-section {
        position: relative;
        padding:60px 0px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.98)),
            url('https://www.transparenttextures.com/patterns/cubes.png');
        overflow: hidden;
    }
    .contact-section::before {
        content: '';
        position: absolute;
        top: -30px;
        left: -20px;
        width: 360px;
        height: 220px;
        background-image:
            linear-gradient(90deg, rgba(124, 77, 255, 0.08) 1px, transparent 1px),
            linear-gradient(rgba(124, 77, 255, 0.08) 1px, transparent 1px);
        background-size: 48px 48px;
        clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
        opacity: 0.45;
        pointer-events: none;
    }
    .contact-kicker {
        color: #6d4bff;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        position: relative;
        padding-bottom: 6px;
        margin-bottom: 20px;
    }
    .contact-kicker::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #6d4bff;
    }
    .contact-kicker::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -4px;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #6d4bff;
    }
    .contact-title {
        font-size:2rem;
        line-height: 1.14;
        font-weight: 800;
        color: #07142d;
        margin-bottom: 54px;
        max-width: 640px;
    }
    .contact-title span {
        color: #6d4bff;
    }
    .contact-support-wrap {
        display: flex;
        align-items: center;
        gap: 34px;
        max-width: 640px;
    }
   .contact-support-image {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    flex: 0 0 auto;
}
    .contact-support-content {
        color: #5c6477;
        font-size: 14px;
        line-height: 1.8;
    }
    .contact-call-block {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-top: 10px;
    }
    .contact-call-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #6d4bff;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        box-shadow: 0 16px 28px rgba(109, 75, 255, 0.26);
    }
    .contact-call-text span {
        display: block;
        font-size: 14px;
        color: #5c6477;
        margin-bottom: 4px;
    }
    .contact-call-text strong {
        font-size: 14px;
        font-weight: 800;
        color: #07142d;
    }
    .contact-form-card {
        background: rgba(255, 255, 255, 0.96);
        border-radius: 0px;
        padding:20px;
        box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
        position: relative;
    }
    .contact-form-card .form-label {
        font-size: 14px;
        font-weight: 700;
        color: #07142d;
        margin-bottom: 5px;
    }
    .contact-input-wrap {
        position: relative;
    }
    .contact-input,
    .contact-textarea {
        width: 100%;
        border: 1px solid #dde3ee;
        border-radius: 0px;
        background: #fff;
        color: #5c6477;
        font-size: 12px;
        padding:10px;
        outline: none;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .contact-textarea {
        min-height: 142px;
        resize: vertical;
        padding-top: 16px;
    }
    .contact-input:focus,
    .contact-textarea:focus {
        border-color: #6d4bff;
        box-shadow: 0 0 0 4px rgba(109, 75, 255, 0.10);
    }
    .contact-input-icon {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #6f7a8f;
        font-size: 17px;
        pointer-events: none;
    }
    .contact-textarea-wrap .contact-input-icon {
        top: 22px;
        transform: none;
    }
    .contact-submit-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border: 0;
        border-radius: 0px;
        background: linear-gradient(135deg, #6d4bff, #7f60ff);
        color: white;
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 700;
        box-shadow: 0 18px 36px rgba(109, 75, 255, 0.24);
    }
    .contact-submit-btn:hover {
        background: linear-gradient(135deg, #5c38ff, #724fff);
    }
    @media (max-width: 991.98px) {
        .contact-section {
            padding: 80px 0 90px;
        }
        .contact-title {
            font-size: 2.7rem;
            margin-bottom: 34px;
        }
        .contact-support-wrap {
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 36px;
        }
        .contact-support-image {
            width: 100%;
            max-width: 360px;
            height: 220px;
        }
        .contact-form-card {
            padding: 36px 26px;
        }
    }
    @media (max-width: 575px) {
        .contact-title {
            font-size: 1.2rem;
            line-height: 25px;
        }
        .contact-support-content {
            font-size: 15px;
        }
        .contact-input,
        .contact-textarea {
            font-size: 15px;
        }
        .contact-submit-btn {
            width: 100%;
            justify-content: center;
        }
    }
/* ===== Contact Info Cards (Left Column) ===== */
.cinfo-intro {
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.cinfo-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #ede9ff;
    border-radius: 0px;
    padding: 18px 22px;
    margin-bottom: 16px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.cinfo-card:hover {
    box-shadow: 0 8px 30px rgba(109,75,255,0.12);
    transform: translateY(-2px);
}

.cinfo-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(109,75,255,0.12);
    color: var(--primary);
}
.cinfo-icon-purple { background: rgba(109,75,255,0.12); color: var(--primary); }
.cinfo-icon-green  { background: rgba(16,185,129,0.12); color: #10b981; }
.cinfo-icon-orange { background: rgba(249,115,22,0.12); color: #f97316; }

.cinfo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cinfo-content span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
}
.cinfo-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}
.cinfo-content a {
    font-size: 0.84rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.cinfo-content a:hover { text-decoration: underline; }

/* Opening Hours card */
.cinfo-hours-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e2d56 100%);
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 4px;
    color: #fff;
}
.cinfo-hours-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.cinfo-hours-head i { color: var(--accent); }
.cinfo-hours-head strong { color: #fff; font-weight: 700; }

.cinfo-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.92rem;
}
.cinfo-hours-row:last-of-type { border-bottom: none; }
.cinfo-hours-row span { color: rgba(255,255,255,0.72); }
.cinfo-hours-row strong { color: #fff; font-weight: 600; }

.cinfo-hours-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px 12px;
}
.cinfo-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    flex-shrink: 0;
    animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}

/* ========================================
   SERVICE DETAIL PAGE STYLES
   ======================================== */

/* -- Hero -- */
.sd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    padding: 80px 0 70px;
    overflow: hidden;
}
.sd-hero-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(109,75,255,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.sd-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.sd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; }
.sd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.sd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

.sd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109,75,255,0.25);
    border: 1px solid rgba(109,75,255,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.sd-hero-badge i { font-size: 0.85rem; }
.sd-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.sd-hero-title span { color: var(--accent); }
.sd-hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.75;
    margin: 0;
}

/* -- Shared -- */
.sd-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(109,75,255,0.08);
    border-left: 3px solid var(--primary);
    padding: 4px 12px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}
.sd-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 20px;
}
.sd-section-title span { color: var(--primary); }

/* -- Overview Section -- */
.sd-overview {
    padding: 40px 0px 0px 0px;
    background: var(--light);
}
.sd-overview-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.sd-overview-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 460px;
    box-shadow: 0 20px 60px rgba(109,75,255,0.15);
}
.sd-overview-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 2;
}
.sd-overview-badge i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.sd-overview-badge strong { display: block; font-weight: 800; font-size: 1rem; color: var(--secondary); }
.sd-overview-badge span { font-size: 0.78rem; color: var(--muted); }
.sd-overview-stat {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 2;
}
.sd-stat-item { text-align: center; }
.sd-stat-item strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.sd-stat-item span { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.sd-stat-divider { width: 1px; height: 36px; background: #e5e7eb; }

.sd-overview-text {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sd-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.sd-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}
.sd-check-list li i { color: var(--primary); margin-top: 2px; font-size: 1rem; flex-shrink: 0; }

.sd-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(109,75,255,0.35);
}
.sd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(109,75,255,0.45); color: #fff; }
.sd-btn-primary i { transition: transform 0.25s; }
.sd-btn-primary:hover i { transform: translateX(4px); }

.sd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.sd-btn-outline:hover { background: var(--primary); color: #fff; }

/* -- Features Section -- */
.sd-features {
    padding: 90px 0;
    background: #fff;
}
.sd-features-sub {
    color: var(--muted);
    font-size: 0.97rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.sd-feature-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ede9ff;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    padding: 32px 26px 28px;
}
.sd-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(109,75,255,0.14);
}
.sd-feature-img-wrap {
    position: relative;
    overflow: hidden;
}
.sd-feature-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}
.sd-feature-card:hover .sd-feature-img-wrap img { transform: scale(1.05); }

.sd-feature-icon {
    position: absolute;
    bottom: -20px;
    left: 22px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(109,75,255,0.35);
    z-index: 2;
}

.sd-feature-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(109,75,255,0.3);
}
.sd-feature-card:hover .sd-feature-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(109,75,255,0.45);
}

.sd-feature-body {
    padding: 0;
}
.sd-feature-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}
.sd-feature-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}
.sd-feature-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.sd-feature-link:hover { gap: 10px; color: var(--primary-dark); }

/* -- CTA Banner -- */

.sd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
/*    flex-wrap: wrap;*/
    background:linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    border: 1px solid rgba(109,75,255,0.3);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top:30px;
}
.sd-cta-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.sd-cta-text p { color: rgba(255,255,255,0.72); font-size: 0.97rem; margin: 0; }
.sd-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.sd-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); color: var(--primary); }
.sd-btn-cta i { transition: transform 0.25s; }
.sd-btn-cta:hover i { transform: translateX(4px); }

@media (max-width: 768px) {
    .sd-check-list { grid-template-columns: 1fr; }
    .sd-overview-badge { display: none; }
    .sd-overview-stat { position: static; margin-top: 16px; border-radius: 14px; }
    .sd-cta-inner { flex-direction: column; text-align: center; padding: 30px 24px; }
}

/* ========================================
   PROJECT DETAIL PAGE STYLES  (.pd-*)
   ======================================== */

/* -- Hero -- */
.pd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    padding: 80px 0 70px;
    overflow: hidden;
}
.pd-hero-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 90% 40%, rgba(109,75,255,0.28) 0%, transparent 70%);
    pointer-events: none;
}
.pd-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.pd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; }
.pd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.87rem; }
.pd-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.pd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109,75,255,0.25);
    border: 1px solid rgba(109,75,255,0.45);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pd-hero-title {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 16px;
}
.pd-hero-title span { color: var(--accent); }
.pd-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 30px;
}
.pd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.pd-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-meta-item > i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.pd-meta-item span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.pd-meta-item strong { display: block; font-size: 0.93rem; font-weight: 700; color: #fff; }

.pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(109,75,255,0.4);
}
.pd-btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 32px rgba(109,75,255,0.5); }
.pd-btn-primary i, .pd-btn-outline i { transition: transform 0.2s; }
.pd-btn-primary:hover i { transform: translateX(4px); }

.pd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}
.pd-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }

/* -- Showcase / Screenshots -- */
.pd-showcase {
    background: #f1edff;
    padding: 70px 0 60px;
}
.pd-main-screen {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(109,75,255,0.18);
    margin-bottom: 28px;
}
.pd-main-screen img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.pd-screen-glow {
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, rgba(241,237,255,0.6), transparent);
    pointer-events: none;
}
.pd-mockup-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pd-mockup-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 28px rgba(109,75,255,0.1);
    cursor: pointer;
}
.pd-mockup-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.pd-mockup-item:hover img { transform: scale(1.05); }
.pd-mockup-item span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 20px 14px 12px;
}

/* -- Challenge & Solution -- */
.pd-challenge {
    padding: 40px 0 30px;
    background: #fff;
}
/*.pd-challenge-card {
    border-radius: 18px;
    padding: 36px 32px;
    height: 100%;
}*/
/*.pd-card-problem {
    background: #fff5f5;
    border: 1px solid #fecaca;
}
.pd-card-solution {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}*/
.pd-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.pd-card-problem .pd-card-icon { background: #fee2e2; color: #ef4444; }
.pd-card-solution .pd-card-icon { background: #dcfce7; color: #22c55e; }
.pd-challenge-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}
.pd-challenge-card > p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.pd-challenge-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pd-challenge-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}
.pd-card-problem ul li i { color: #ef4444; margin-top: 2px; }
.pd-card-solution ul li i { color: #22c55e; margin-top: 2px; }

/* Impact Stats */
.pd-impact-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--secondary), #1a0a5e);
    border-radius: 18px;
    margin-top: 50px;
    overflow: hidden;
}
.pd-impact-item {
    text-align: center;
    padding: 36px 20px;
    position: relative;
}
.pd-impact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.pd-impact-item strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.pd-impact-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* -- Key Features -- */
.pd-features {
    padding: 90px 0;
    background: var(--light);
}
.pd-kicker {
    display: inline-block;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(109,75,255,0.08);
    border-left: 3px solid var(--primary);
    padding: 4px 12px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}
.pd-section-title {
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.28;
    margin-bottom: 16px;
}
.pd-section-title span { color: var(--primary); }
.pd-section-sub {
    color: var(--muted);
    font-size: 0.96rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

.pd-feature-card {
    background: #fff;
    border-radius: 0px;
    padding: 30px 26px;
    /* border: 1px solid #ede9ff; */
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(109,75,255,0.12);
}
.pd-feature-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(109,75,255,0.3);
}
.pd-feature-card h5 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}
.pd-feature-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* -- Technology Stack -- */
.pd-tech {
    padding: 90px 0;
    background: #fff;
}
.pd-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pd-tech-item {
    background: #fff;
    border: 1px solid #ede9ff;
    border-radius: 0px;
    padding: 28px 20px 22px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.pd-tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(109,75,255,0.1);
}
.pd-tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 14px;
}
.pd-tech-laravel { background: #fff1f0; color: #e74c3c; }
.pd-tech-vue     { background: #f0fdf4; color: #42b883; }
.pd-tech-mysql   { background: #eff6ff; color: #3b82f6; }
.pd-tech-redis   { background: #fff7ed; color: #f97316; }
.pd-tech-docker  { background: #eff6ff; color: #2496ed; }
.pd-tech-aws     { background: #fffbeb; color: #f59e0b; }
.pd-tech-bs      { background: #f5f0ff; color: #7952b3; }
.pd-tech-git     { background: #fff5f5; color: #f05032; }

.pd-tech-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}
.pd-tech-item span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

/* -- Testimonial -- */
.pd-testimonial {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
}
.pd-testimonial-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.pd-testi-quote-icon {
    width: 56px;
    height: 56px;
    background: rgba(109,75,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin: 0 auto 24px;
}
.pd-testi-text {
    font-size: 1.13rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 32px;
}
.pd-testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pd-testi-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(109,75,255,0.5);
}
.pd-testi-author strong { display: block; color: #fff; font-weight: 800; font-size: 1rem; }
.pd-testi-author span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.pd-testi-stars { color: #f59e0b; font-size: 0.8rem; margin-top: 4px; letter-spacing: 2px; }

/* ========================================
   BLOG DETAIL PAGE STYLES  (.bd-*)
   ======================================== */

/* Hero */
.bd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    padding: 70px 0 60px;
    overflow: hidden;
}
.bd-hero-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(109,75,255,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.bd-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.35); margin-bottom: 22px; }
.bd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; }
.bd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.85); font-size: 0.87rem; }
.bd-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.bd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(109,75,255,0.25);
    border: 1px solid rgba(109,75,255,0.45);
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.bd-hero-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 22px;
    max-width: 820px;
}
.bd-hero-title span { color: var(--accent); }

.bd-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.bd-meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bd-meta-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(109,75,255,0.5);
}
.bd-meta-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; }
.bd-meta-author span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.bd-meta-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
.bd-meta-info {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
}
.bd-meta-info i { color: var(--accent); font-size: 0.8rem; }

/* Layout */
.bd-layout {
    padding: 70px 0 90px;
    background: var(--light);
}

/* Cover image */
.bd-cover-wrap {
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 12px 40px rgba(109,75,255,0.12);
}
.bd-cover-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Article typography */
.bd-article {
    background: #fff;
    border-radius: 0px;
    padding: 40px 38px;
    box-shadow: 0 4px 24px rgba(109,75,255,0.06);
    border: 1px solid #ede9ff;
}
.bd-lead {
    font-size: 1.07rem;
    color: var(--secondary);
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--light);
}
.bd-article h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 32px 0 14px;
}
.bd-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 22px 0 10px;
}
.bd-article p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* Highlight box */
.bd-highlight-box {
    display: flex;
    gap: 16px;
    background: rgba(109,75,255,0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 18px 20px;
    margin: 24px 0;
}
.bd-highlight-box > i { color: var(--primary); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.bd-highlight-box p { margin: 0; font-size: 0.93rem; color: var(--secondary); line-height: 1.75; }

/* Quote block */
.bd-quote-block {
    background: var(--secondary);
    border-radius: 14px;
    padding: 28px 30px;
    margin: 28px 0;
}
.bd-quote-block blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin: 0 0 12px;
    border: none;
    padding: 0;
}
.bd-quote-block cite { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

/* Tags */
.bd-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 32px 0 28px;
    padding-top: 24px;
    border-top: 1px solid var(--light);
}
.bd-tags > span { font-size: 0.82rem; font-weight: 700; color: var(--secondary); }
.bd-tags a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(109,75,255,0.08);
    border: 1px solid rgba(109,75,255,0.2);
    border-radius: 50px;
    padding: 4px 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.bd-tags a:hover { background: var(--primary); color: #fff; }

/* Share bar */
.bd-share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: var(--light);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 32px;
}
.bd-share-label { font-size: 0.82rem; font-weight: 700; color: var(--secondary); white-space: nowrap; }
.bd-share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.bd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s, transform 0.2s;
}
.bd-share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.bd-share-fb { background: #1877f2; color: #fff; }
.bd-share-tw { background: #000; color: #fff; }
.bd-share-li { background: #0a66c2; color: #fff; }
.bd-share-wa { background: #25d366; color: #fff; }
.bd-share-copy { background: #fff; color: var(--secondary); border: 1px solid #e2e8f0; }

/* Author card */
.bd-author-card {
    display: flex;
    gap: 20px;
    background: var(--light);
    border-radius: 16px;
    padding: 24px;
    align-items: flex-start;
}
.bd-author-card > img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(109,75,255,0.3);
    flex-shrink: 0;
}
.bd-author-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); display: block; margin-bottom: 4px; }
.bd-author-info strong { display: block; font-size: 1rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.bd-author-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.bd-author-socials { display: flex; gap: 8px; }
.bd-author-socials a {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(109,75,255,0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.bd-author-socials a:hover { background: var(--primary); color: #fff; }

/* ---- SIDEBAR ---- */
.bd-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 28px; }

/* Latest posts widget */
.bd-widget {
    background: #fff;
    border-radius: 0px;
    border: 1px solid #ede9ff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(109,75,255,0.06);
}
.bd-widget-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--secondary), #1a0a5e);
}
.bd-widget-head i { color: var(--accent); font-size: 1rem; }
.bd-widget-head h4 { margin: 0; font-size: 1rem; font-weight: 800; color: #fff; }

.bd-latest-list { padding: 8px 0; }
.bd-latest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f1edff;
}
.bd-latest-item:last-child { border-bottom: none; }
.bd-latest-item:hover { background: #f8f6ff; }
.bd-latest-img {
    width: 58px;
    height: 52px;
    border-radius: 0px;
    overflow: hidden;
    flex-shrink: 0;
}
.bd-latest-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-latest-info span { font-size: 0.7rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 3px; }
.bd-latest-info p { margin: 0; font-size: 0.82rem; font-weight: 600; color: var(--secondary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Support widget */
.bd-support-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 8px 30px rgba(109,75,255,0.2);
}
.bd-support-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
}
.bd-support-head-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(109,75,255,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bd-support-head strong { display: block; font-size: 1rem; font-weight: 800; color: #fff; }
.bd-support-head span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.bd-online-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    margin-left: auto;
    animation: pulse-green 1.8s infinite;
}

.bd-support-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 18px;
}

.bd-support-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.bd-support-btn:hover { transform: translateY(-2px); }
.bd-support-phone {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}
.bd-support-phone:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.bd-support-whatsapp {
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.3);
    margin-bottom: 0;
}
.bd-support-whatsapp:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.2); }

.bd-support-btn-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bd-support-phone .bd-support-btn-icon { background: rgba(109,75,255,0.4); color: #fff; }
.bd-support-whatsapp .bd-support-btn-icon { background: rgba(37,211,102,0.3); color: #25d366; }

.bd-support-btn-text { flex: 1; }
.bd-support-btn-text span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.bd-support-btn-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; }

.bd-support-arrow { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

.bd-support-hours {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.bd-support-hours i { color: var(--accent); }

@media (max-width: 991px) {
    .bd-sidebar { position: static; }
    .bd-article { padding: 28px 22px; }
}

/* -- Quote Form -- */
.pd-quote {
    padding: 90px 0;
    background: var(--light);
}
.pd-quote-sub {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 30px;
}
.pd-quote-info { display: flex; flex-direction: column; gap: 18px; }
.pd-qinfo-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pd-qinfo-item > i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(109,75,255,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pd-qinfo-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--secondary); }
.pd-qinfo-item span { font-size: 0.82rem; color: var(--muted); }

.pd-quote-form {
    background: #fff;
    border-radius: 0px;
    padding: 40px 36px;
    box-shadow: 0 12px 48px rgba(109,75,255,0.1);
    border: 1px solid #ede9ff;
}
.pd-quote-form h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light);
}
.pd-quote-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pd-input-wrap {
    position: relative;
}
.pd-input-wrap > i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.85rem;
    pointer-events: none;
}
.pd-textarea-wrap > i { top: 16px; transform: none; }
.pd-input {
    width: 100%;
    background: var(--light);
    border: 1px solid #0068f1;
    border-radius: 0px;
    padding: 12px 40px 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.pd-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(109,75,255,0.1);
}
.pd-input::placeholder { color: #94a3b8; }
.pd-select { cursor: pointer; }
.pd-textarea { min-height: 130px; resize: vertical; }

.pd-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(109,75,255,0.35);
    font-family: 'Poppins', sans-serif;
}
.pd-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(109,75,255,0.45); }
.pd-submit-btn i { transition: transform 0.2s; }
.pd-submit-btn:hover i { transform: translateX(4px); }

/* Responsive */
@media (max-width: 991px) {
    .pd-impact-row { grid-template-columns: repeat(2, 1fr); }
    .pd-tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .pd-mockup-row { grid-template-columns: 1fr; }
    .pd-impact-row { grid-template-columns: repeat(2, 1fr); }
    .pd-impact-item::after { display: none; }
    .pd-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-quote-form { padding: 28px 20px; }
    .pd-hero-meta { gap: 14px; }
}

/* ========================================
   GALLERY PAGE STYLES (.gallery-*)
   ======================================== */

.gallery-hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 85px;
    background: linear-gradient(145deg, #0f172a 0%, #1c2256 52%, #6d4bff 100%);
}

.gallery-hero-shape {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px) 0 0 / 18px 18px,
        radial-gradient(circle at 82% 68%, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px) 0 0 / 22px 22px,
        radial-gradient(circle at 80% 15%, rgba(167, 139, 250, 0.48), transparent 38%);
    opacity: 0.34;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    color: #f8f5ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gallery-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.gallery-hero-title span {
    color: #d8c8ff;
}

.gallery-hero-subtitle {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.gallery-section-wrap {
    position: relative;
    padding: 60px 0;
    background:
        linear-gradient(180deg, #f8f9ff 0%, #edf1ff 100%);
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-filter {
    border: 1px solid rgba(109, 75, 255, 0.2);
    background: #ffffff;
    color: #334155;
    padding: 10px 18px;
    border-radius: 0px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: linear-gradient(135deg, #6d4bff, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(109, 75, 255, 0.24);
    transform: translateY(-2px);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 320px;
    border: 1px solid rgba(109, 75, 255, 0.12);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.1);
}

.gallery-card-tall {
    height: 320px;
}

.gallery-card-wide {
    height: 320px;
}

.gallery-item.is-hidden {
    display: none !important;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(9, 15, 35, 0.9), rgba(9, 15, 35, 0.06));
    transform: translateY(14px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-overlay span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8a8ff;
    margin-bottom: 8px;
}

.gallery-overlay h3 {
    font-size: 1.06rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-cta-box {
    margin-top: 48px;
    padding: 42px 24px;
    background: linear-gradient(130deg, #0f172a 0%, #1d2562 50%, #6d4bff 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.28);
}

.gallery-cta-kicker {
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.gallery-cta-box h4 {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    line-height: 1.3;
    font-weight: 800;
}

.gallery-cta-btn {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1b2563;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 12px 24px;
    transition: transform 0.25s ease;
}

.gallery-cta-btn:hover {
    color: #1b2563;
    transform: translateY(-2px);
}

.gallery-cta-btn i {
    transition: transform 0.25s ease;
}

.gallery-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .gallery-hero-section {
        padding: 80px 0 72px;
    }

    .gallery-card,
    .gallery-card-tall,
    .gallery-card-wide {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .gallery-hero-title {
        font-size: 1.8rem;
    }

    .gallery-hero-subtitle {
        font-size: 0.94rem;
    }

    .gallery-filter {
        width: 100%;
    }

    .gallery-card,
    .gallery-card-tall,
    .gallery-card-wide {
        height: 260px;
    }

    .gallery-cta-box {
        padding: 34px 20px;
    }
}

.btn-about {
    position: relative;
    background: rgba(124, 77, 255, 0.9);
    color: white;
    padding: 15px 30px;
    /* border-radius: 8px; */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* হোভার করলে মেইন বডি সামান্য ডার্ক হবে এবং বর্ডার গ্লো করবে */
.btn-about:hover {
    background: #120a2b; /* ডিপ লাক্সারি ব্ল্যাক-পার্পল */
    color: #00e5ff; /* টেক্সট কালার নিয়ন হবে */
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.6);
}

/* টপ এবং বটম এর গ্লোয়িং বর্ডার অ্যানিমেশন */
.btn-about::before, .btn-about::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: all 0.4s ease;
}
.btn-about::before { top: 0; left: 0; }
.btn-about::after { bottom: 0; right: 0; }

.btn-about:hover::before, .btn-wcu:hover::after {
    width: 100%;
}
