   body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #2d2d2d;
            color: #f5c242;
            text-align: center;
            overflow-x: hidden;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: linear-gradient(180deg, #333, #222);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            position: relative;
            height: 130px;
        }

        img.logo {
            width: 250px;
            transition: transform 0.5s ease;
        }

        img.logo:hover {
            transform: scale(1.05);
        }

        /* Center Clock (Always in Middle) */
        .clock {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            font-weight: bold;
            color: #f5c242;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        /* Right Profile Image */
        .profile {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f5c242;
            transition: transform 0.3s ease;
        }

        .profile:hover {
            transform: scale(1.05);
        }

        section {
            padding: 40px 20px;
            max-width: 900px;
            margin: auto;
        }

        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
      

        .card {
            background: #3a3a3a;
            padding: 20px;
            width: 250px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.5);
        }

        footer {
            margin-top: 40px;
            padding: 20px;
            font-size: 14px;
            background: #1e1e1e;
        }

        /* Mobile View */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            .logo {
                width: 180px;
                margin-bottom: 10px;
            }

            .profile {
                width: 90px;
                height: 90px;
                margin-top: 10px;
            }

            .clock {
                position: static;
                transform: none;
                margin: 10px 0;
                top: auto;
            }
        }