        :root {
            --brand-green: #198754;
            --brand-black: #0F0F0F;
            --brand-light: #f8f9fa;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: white;
            color: var(--brand-black);
        }

        /* Hero Section */
        .hero-devs {
            padding: 80px 0;
            background-color: var(--brand-light);
            border-bottom-left-radius: 60px;
            border-bottom-right-radius: 60px;
            text-align: center;
        }

        /* Developer Card */
        .dev-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.05);
            transition: 0.3s;
            text-align: center;
        }

        .dev-card:hover {
            transform: translateY(-10px);
        }

        .dev-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(25, 135, 84, 0.1);
            margin-bottom: 20px;
        }

        .dev-name { font-weight: 800; font-size: 1.5rem; margin-bottom: 5px; }
        .dev-role { color: var(--brand-green); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 20px; }

        /* Icons Styling - Added LinkedIn & WhatsApp */
        .dev-social-box {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .dev-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        /* LinkedIn Style */
        .icon-linkedin {
            background: rgba(0, 119, 181, 0.1);
            color: #0077b5;
        }
        .icon-linkedin:hover {
            background: #0077b5;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
        }

        /* WhatsApp Style */
        .icon-whatsapp {
            background: rgba(37, 211, 102, 0.1);
            color: #25d366;
        }
        .icon-whatsapp:hover {
            background: #25d366;
            color: white;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .footer-ss {
            background-color: var(--brand-black);
            color: white;
            border-radius: 60px 60px 0 0;
            padding: 60px 0 30px;
            margin-top: 80px;
        }