 :root {
            --primary-gradient: linear-gradient(135deg, #2563eb, #06b6d4);
            --dark-gradient: radial-gradient(circle at top right, #1e293b, #0f172a);
            --slate-light: #f8fafc;
            --accent-purple: #8b5cf6;
            --coral-red: #ef4444;
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            color: #1e293b; 
            background-color: var(--slate-light);
            overflow-x: hidden;
        }

        /* Hero / Header styles */
        .navbar {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.9) !important;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }
        
        .hero-section { 
            background: var(--dark-gradient); 
            color: white; 
            padding: 140px 0 100px 0;
            position: relative;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top right, var(--slate-light) 50%, transparent 50%);
        }

        .text-gradient { 
            background: linear-gradient(135deg, #38bdf8, #3b82f6); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }

        /* Buttons & Highlights */
        .btn-gradient { 
            background: var(--primary-gradient); 
            color: white; 
            border: none; 
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-gradient:hover { 
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
            color: white;
        }

        /* Stats Cards */
        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
            border: 1px solid rgba(226, 232, 240, 0.6);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        /* Developer & Culture Section */
        .dev-culture-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }
        .dev-badge {
            background-color: rgba(37, 99, 235, 0.1);
            color: #2563eb;
            font-weight: 700;
            border-radius: 8px;
            padding: 6px 14px;
            display: inline-block;
        }

        /* Custom Responsive Delivery Process Steps (Visual inspired by image_0c8ba4.jpg) */
        .process-title-container {
            margin-bottom: 60px;
        }
        .process-container {
            position: relative;
            padding: 40px 0;
        }
        /* Horizontal connecting line on desktop */
        @media (min-width: 992px) {
            .process-container::before {
                content: '';
                position: absolute;
                top: 45%;
                left: 8%;
                width: 84%;
                height: 4px;
                background: linear-gradient(90deg, #2563eb, #8b5cf6, #06b6d4, #ef4444);
                z-index: 1;
                border-radius: 2px;
            }
        }
        .process-step {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 40px;
        }
        .process-number {
            font-size: 1.1rem;
            font-weight: 800;
            color: #64748b;
            margin-bottom: 10px;
            display: block;
        }
        .process-label {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1e293b;
            margin-bottom: 25px;
        }
        .process-diamond-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px auto;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Diamond shape styling mirroring image_0c8ba4.jpg layout styling */
        .process-diamond {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid;
            border-image: linear-gradient(135deg, #2563eb, #8b5cf6) 1;
            transform: rotate(45deg);
            position: absolute;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
            transition: transform 0.3s, background-color 0.3s;
            z-index: -1;
        }
        .process-step:hover .process-diamond {
            transform: rotate(45deg) scale(1.1);
            background-color: #f8fafc;
        }
        .process-icon {
            font-size: 28px;
            background: linear-gradient(135deg, #1e3a8a, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            z-index: 3;
        }
        .process-desc {
            font-size: 0.9rem;
            color: #64748b;
            max-width: 180px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
            border: 1px solid rgba(226, 232, 240, 0.8);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testimonial-quote {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #475569;
            font-style: italic;
            margin-bottom: 25px;
        }
        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background-color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 1.2rem;
        }

        /* Footers */
        footer {
            background-color: #0f172a;
            color: #94a3b8;
        }
        .footer-section{
    background:#07162b;
    color:#cfd8e3;
}

.footer-section h5{
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-section h5::after{
    content:"";
    width:45px;
    height:3px;
    background:#0d6efd;
    display:block;
    margin-top:10px;
    border-radius:10px;
}

.footer-text{
    color:#b7c1ce;
    line-height:1.8;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#b7c1ce;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:8px;
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#b7c1ce;
    line-height:1.7;
}

.footer-contact i{
    color:#0d6efd;
    margin-top:5px;
    min-width:18px;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#10233f;
    color:#fff;
    text-decoration:none;
    margin-right:10px;
    transition:.3s;
}

.social-icons a:hover{
    background:#0d6efd;
    transform:translateY(-5px);
}

.footer-bottom-link{
    color:#b7c1ce;
    text-decoration:none;
}

.footer-bottom-link:hover{
    color:#0d6efd;
}

.footer-section hr{
    border-color:#223753;
}

.copyright{
    color:#b7c1ce;
}